判断字符串为空有好几种方法:9 [5 d0 e N. }
方法一: 代码如下:! G: h7 _! n& ]2 G3 ~2 Q0 I4 K8 m
static void Main(string[] args)
{
string str = "";
if (str == "")
{
Console.WriteLine("a is empty"); ;
}
Console.ReadKey();
} 运行结果:a is empty" w5 |0 f5 P; k
i% P' J3 Z& c8 x3 T- a
这样针对str = ""也是可以的,但是大多数场景是在方法的 入口处判空,这个字符串有可能是null,也有可能是" ",甚至是"\n",上面这种判空方法显示不能覆盖这么多场景;
4 g+ ^/ V& f, ~& U2 M2 a方法二 :这时候IsNullOrEmpty就横空出世了,针对字符串值为string.Empty、str2 = ""、null,都可以用
" y/ J/ h% M6 D% j2 r3 a' a+ t' f 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();
} 运行结果如下:
5 z# a6 `4 k, @: }
& j8 r8 f) y" o# R! m* f7 c4 Y7 N& Z方法三 :但是IsNullOrEmpty在字符串为" ","\n","\t",时候就无能为力了,为了覆盖这些场景,高手们一般判空使用方法IsNullOrWhiteSpace
6 E% n3 S0 q& D: Q4 x1 E% sstatic 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();
} 运行结果:4 {+ @, Z! m' Q1 N& K
|