当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


C# String IsNullOrWhiteSpace()用法及代码示例


C# IsNullOrWhiteSpace() 方法用于检查指定的字符串是否为空,或仅由空白字符组成。它返回布尔值 True 或 False。

签名

public static bool IsNullOrWhiteSpace(String str)

参数

str:它是一个字符串参数,用于检查字符串中的空值和空格。

返回

它返回布尔值。

C# 字符串 IsNullOrWhiteSpace() 方法示例

using System; 
    public class StringExample  
     {  
        public static void Main(string[] args) 
        {  
           string s1 = "Hello C#";
           string s2 = "";
           string s3 = " ";
           bool b1 = string.IsNullOrWhiteSpace(s1);
           bool b2 = string.IsNullOrWhiteSpace(s2);
           bool b3 = string.IsNullOrWhiteSpace(s3);
           Console.WriteLine(b1);		// returns False 
           Console.WriteLine(b2);		// returns True 
           Console.WriteLine(b3);		// returns True 
       }  
    }

输出:

False
True
True




相关用法


注:本文由纯净天空筛选整理自 C# String IsNullOrWhiteSpace()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。