码迷,mamicode.com
首页 > 其他好文 > 详细

转载:string.IsNullOrEmpty和string.IsNullOrWhiteSpace方法的区别

时间:2017-08-04 10:01:47      阅读:121      评论:0      收藏:0      [点我收藏+]

标签:字符串   false   space   empty   str   属性   char   字符   rem   

string.IsNullOrEmpty():判断字符串是否为null或者为string.Empty,如果是"\t"这样的字符就返回false,为了达到判断过滤这些功能,就要使用Trim()和Length属性帮忙,判断是否长度为零
string.IsNullOrWhiteSpace():判断所有空白字符,相当于string.IsNullOrEmpty和str.Trim().Length总和,他将字符串给Char.IsWhiteSpace为ture的任何字符都将是正确的(推荐使用)

转载:string.IsNullOrEmpty和string.IsNullOrWhiteSpace方法的区别

标签:字符串   false   space   empty   str   属性   char   字符   rem   

原文地址:http://www.cnblogs.com/jbml-154312/p/7283217.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!