Click here to Skip to main content
65,938 articles
CodeProject is changing. Read more.
Articles / programming / string

.NET 4: string.IsNullOrWhitespace()

4.68/5 (17 votes)
17 May 2010CPOL 30K  
Any string input can have these many possible states1) String is null2) String is empty3) String contains nothing but white space4) String has some contentTill now, .NET had static method for stringbool string.IsNullOrEmpty()which handled first two conditions for...
Any string input can have these many possible states
1) String is null
2) String is empty
3) String contains nothing but white space
4) String has some content

Till now, .NET had static method for string
C#
bool string.IsNullOrEmpty(<string_val>)

which handled first two conditions for us.

Now with .NET 4 we have another static method
C#
bool string.IsNullOrWhitespace(<string_val>)


Basically it is equivalent to the following code,
C#
return String.IsNullOrEmpty(input) || input.Trim().Length ==0 ;


but has performance improvement because white-space characters are defined by the Unicode standard. The IsNullOrWhiteSpace method interprets any character that returns a value of true when it is passed to the Char.IsWhiteSpace method as a white-space character.

We must have implemented logic for this condition everywhere in our applications but addition of this useful inbuilt function is nice to have with some performance improvement !

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)