If this is a duplicate please point me to it and I'll close, I couldn't find anything. Something I find myself doing more and more is checking a string for empty (as in "" or null) and a conditional operator.

A current example:

s.SiteNumber.IsNullOrEmpty() ? "No Number" : s.SiteNumber;

This is just an extension method, it's equivalent to:

string.IsNullOrEmpty(s.SiteNumber) ? "No Number" : s.SiteNumber;

Since it's empty and not null, ?? won't do the trick. A string.IsNullOrEmpty() version of ?? would be the perfect solution. I'm thinking there has to be a cleaner way of doing this (I hope!), but I've been at a loss to find it.

Does anyone know of a better way to do this, even if it's only in .Net 4.0?

link|improve this question

Just to tantalize you a bit, you can easily define custom, ad-hoc binary (and unary, for that matter) operators in F#. Here let (|?) x y = if String.IsNullOrEmpty(x) then y else x and use it like s.SiteNumber |? "No Number". – Stephen Swensen Apr 1 at 0:49
feedback

5 Answers

up vote 17 down vote accepted

There isn't a built-in way to do this. You could make your extension method return a string or null, however, which would allow the coalescing operator to work. This would be odd, however, and I personally prefer your current approach.

Since you're already using an extension method, why not just make one that returns the value or a default:

string result = s.SiteNumber.ConvertNullOrEmptyTo("No Number");
link|improve this answer
I think you're right, and this is the cleanest solution currently available that's still readable. I'd love something like a ??? operator in C# 5 though, who knows. – Nick Craver Mar 10 '10 at 21:01
and what would the ??? operator do? take default values in addition to nulls? sounds extremely complicated at best – Nico Jul 25 '11 at 0:09
feedback

You could change your extension to return null if SiteNumber is empty:

s.SiteNumber.NullIfEmpty() ?? "No Number";
link|improve this answer
?? without : would be sufficient. guess that's a typo? – devio Mar 10 '10 at 20:27
Typo, thanks :) – RedFilter Mar 10 '10 at 20:31
feedback

how about a string extension method ValueOrDefault()

public static string ValueOrDefault(this string s, string sDefault)
{
    if (string.IsNullOrEmpty(s))
        return sDefault;
    return s;
}

or return null if string is Empty:

public static string Value(this string s)
{
    if (string.IsNullOrEmpty(s))
        return null;
    return s;
}

Didn't try these solutions though.

link|improve this answer
I like option #1 there, although I'd call it something more semantic like Or(), so I could write "string s = s.SiteNumber.Or("Default");" – jvenema Apr 29 '11 at 19:25
Calling something ...OrDefault() would be confusing if it didn't behave like the rest of the framework's ...OrDefault() methods. Like it or not, MS has given a specific meaning to that naming and deviating from that behavior in custom methods is unnecessarily confusing to users of your API. – mattmc3 Jul 9 '11 at 23:12
feedback

I know this is an old question - but I was looking for an answer and none of the above fit my need as well as what I ended up using:

private static string Coalesce(params string[] strings)
{
    return strings.Where(s => !s.IsNullOrEmpty()).FirstOrDefault();
}

Usage:

string result = Coalesce(s.SiteNumber, s.AltSiteNumber, "No Number");
link|improve this answer
feedback

I have a couple of utility extensions that I like to use:

public static string OrDefault(this string str, string @default = default(string))
{
    return string.IsNullOrEmpty(str) ? @default : str;
}

public static object OrDefault(this string str, object @default)
{
    return string.IsNullOrEmpty(str) ? @default : str;
}

Edit: Inspired by sfsr's answer, I'll be adding this variant to my toolbox from now on:

public static string Coalesce(this string str, params string[] strings)
{
    return (new[] {str})
        .Concat(strings)
        .FirstOrDefault(s => !string.IsNullOrEmpty(s));
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.