判断字符串为空有好几种方法:
' z9 S1 `/ W1 q6 z方法一: 代码如下:
# [% n5 c! T( F7 V; S static void Main(string[] args)
{
string str = "";
if (str == "")
{
Console.WriteLine("a is empty"); ;
}
Console.ReadKey();
} 运行结果:a is empty$ W; e a( c% ]2 P1 n0 P
& W7 ^$ v6 g4 x& m% G. ]' \这样针对str = ""也是可以的,但是大多数场景是在方法的 入口处判空,这个字符串有可能是null,也有可能是" ",甚至是"\n",上面这种判空方法显示不能覆盖这么多场景; d; F6 ?0 c1 Y) J7 P8 `
方法二 :这时候IsNullOrEmpty就横空出世了,针对字符串值为string.Empty、str2 = ""、null,都可以用( H& B* \8 H& t" A" w4 C
static void Main(string[] args)
{
string str1 = string.Empty;
if (string.IsNullOrEmpty(str1))
{
Console.WriteLine("str1 is empty"); ;
}
string str2 = "";
if (string.IsNullOrEmpty(str2))
{
Console.WriteLine("str2 is empty"); ;
}
string str3 = null;
if (string.IsNullOrEmpty(str3))
{
Console.WriteLine("str3 is empty"); ;
}
Console.ReadKey();
} 运行结果如下:4 y0 p8 P0 p4 o, n5 D& B' m& m g
# l$ H% c- S- G8 r0 U; _方法三 :但是IsNullOrEmpty在字符串为" ","\n","\t",时候就无能为力了,为了覆盖这些场景,高手们一般判空使用方法IsNullOrWhiteSpace) N( n* o( v2 Q1 C7 f
static void Main(string[] args)
{
string str1 = string.Empty;
if (string.IsNullOrWhiteSpace(str1))
{
Console.WriteLine("str1 is empty"); ;
}
string str2 = "";
if (string.IsNullOrWhiteSpace(str2))
{
Console.WriteLine("str2 is empty"); ;
}
string str3 = null;
if (string.IsNullOrWhiteSpace(str3))
{
Console.WriteLine("str3 is empty"); ;
}
string str4 = " ";
if (string.IsNullOrWhiteSpace(str4))
{
Console.WriteLine("str4 is empty"); ;
}
string str5 = "\n";
if (string.IsNullOrWhiteSpace(str5))
{
Console.WriteLine("str5 is empty"); ;
}
string str6 = "\t";
if (string.IsNullOrWhiteSpace(str6))
{
Console.WriteLine("str6 is empty"); ;
}
Console.ReadKey();
} 运行结果:+ |2 G( T5 y% Q4 I5 [% f% \) k2 w6 N
|