字符串判空的几种方式

今天我们一起来探讨C#中常用的字符串判空IsNullOrWhiteSpace的几种方法。该方法用于检查字符串是否为null、空字符串("")或只包含空白字符。如果字符串为null、长度为判空或只包含空白字符(例如空格、制表符、换行符),返回true;否则返回false。与IsNullOrEmpty不同,IsNullOrWhiteSpace会考虑字符串中的空白字符。

判断字符串为空有好几种方法:

方法一: 代码如下:

static void Main(string[] args)        {string str = "";
if (str == "")            {                Console.WriteLine("a is  empty"); ;            }
            Console.ReadKey();        }

运行结果:a is empty

这样针对str = ""也是可以的,但是大多数场景是在方法的 入口处判空,这个字符串有可能是null,也有可能是"   ",甚至是"\n",上面这种判空方法显示不能覆盖这么多场景;

方法二 :这时候IsNullOrEmpty就横空出世了,针对字符串值为string.Empty、str2 = ""、null,都可以用

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();        }

运行结果如下:

方法三 :但是IsNullOrEmpty在字符串为"     ","\n","\t",时候就无能为力了,为了覆盖这些场景,高手们一般判空使用方法IsNullOrWhiteSpace​​​​​​​

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();        }

运行结果:

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

A_nanda

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值