string.IsNullOrEmpty(string)与string.IsNullOrWhiteSpace(string)

时间:2011-08-07 23:45:22

标签: c# .net string

在.NET 4.0及更高版本中存在string.IsNullOrEmpty(string)时检查被视为不良做法的字符串时是否使用string.IsNullOrWhiteSpace(string)

10 个答案:

答案 0 :(得分:303)

最佳做法是选择最合适的一种。

  

.Net Framework 4.0 Beta 2有一个新的IsNullOrWhiteSpace()方法   将IsNullOrEmpty()方法概括为包含其他白色的字符串   空字符串以外的空间。

     

术语“空格”包括所有不可见的字符   屏幕。例如,空格,换行符,制表符和空字符串为白色   空格字符*

参考:Here

  

对于性能,IsNullOrWhiteSpace并不理想,但是   好。方法调用将导致较小的性能损失。   此外,IsWhiteSpace方法本身具有一些可以的间接性   如果您不使用Unicode数据,请将其删除。一如既往,过早   优化可能是邪恶的,但它也很有趣。

参考:Here

检查源代码(参考源.NET Framework 4.6.2)

IsNullorEmpty

[Pure]
public static bool IsNullOrEmpty(String value) {
    return (value == null || value.Length == 0);
}

IsNullOrWhiteSpace

[Pure]
public static bool IsNullOrWhiteSpace(String value) {
    if (value == null) return true;

    for(int i = 0; i < value.Length; i++) {
        if(!Char.IsWhiteSpace(value[i])) return false;
    }

    return true;
}

<强>实施例

string nullString = null;
string emptyString = "";
string whitespaceString = "    ";
string nonEmptyString = "abc123";

bool result;

result = String.IsNullOrEmpty(nullString);            // true
result = String.IsNullOrEmpty(emptyString);           // true
result = String.IsNullOrEmpty(whitespaceString);      // false
result = String.IsNullOrEmpty(nonEmptyString);        // false

result = String.IsNullOrWhiteSpace(nullString);       // true
result = String.IsNullOrWhiteSpace(emptyString);      // true
result = String.IsNullOrWhiteSpace(whitespaceString); // true
result = String.IsNullOrWhiteSpace(nonEmptyString);   // false

答案 1 :(得分:149)

实践中的差异:

string testString = "";
Console.WriteLine(string.Format("IsNullOrEmpty : {0}", string.IsNullOrEmpty(testString)));
Console.WriteLine(string.Format("IsNullOrWhiteSpace : {0}", string.IsNullOrWhiteSpace(testString)));
Console.ReadKey();

Result :
IsNullOrEmpty : True
IsNullOrWhiteSpace : True

**************************************************************
string testString = " MDS   ";

IsNullOrEmpty : False
IsNullOrWhiteSpace : False

**************************************************************
string testString = "   ";

IsNullOrEmpty : False
IsNullOrWhiteSpace : True

**************************************************************
string testString = string.Empty;

IsNullOrEmpty : True
IsNullOrWhiteSpace : True

**************************************************************
string testString = null;

IsNullOrEmpty : True
IsNullOrWhiteSpace : True

答案 2 :(得分:37)

它们是不同的功能。你应该根据自己的情况决定你需要什么。

我不认为使用它们中的任何一种都是不好的做法。大多数时候IsNullOrEmpty()就足够了。但你可以选择:)

答案 3 :(得分:28)

以下是两种方法的实际实现(使用dotPeek反编译)

[TargetedPatchingOptOut("Performance critical to inline across NGen image boundaries")]
    public static bool IsNullOrEmpty(string value)
    {
      if (value != null)
        return value.Length == 0;
      else
        return true;
    }

    /// <summary>
    /// Indicates whether a specified string is null, empty, or consists only of white-space characters.
    /// </summary>
    /// 
    /// <returns>
    /// true if the <paramref name="value"/> parameter is null or <see cref="F:System.String.Empty"/>, or if <paramref name="value"/> consists exclusively of white-space characters.
    /// </returns>
    /// <param name="value">The string to test.</param>
    public static bool IsNullOrWhiteSpace(string value)
    {
      if (value == null)
        return true;
      for (int index = 0; index < value.Length; ++index)
      {
        if (!char.IsWhiteSpace(value[index]))
          return false;
      }
      return true;
    }

答案 4 :(得分:6)

它说IsNullOrEmpty()所有IsNullOrWhiteSpace()不包括白色间距!

IsNullOrEmpty()如果字符串是:
-null
-empty

IsNullOrWhiteSpace()如果字符串是:
-null
-empty
- 仅包含空格

答案 5 :(得分:3)

这对所有人来说都是......

if (string.IsNullOrEmpty(x.Trim())
{
}

这将修剪所有空格,如果它们在那里避免了IsWhiteSpace的性能损失,这将使字符串满足“空”条件,如果它不为空。

我也认为这更清晰,无论如何都要修剪字符串,特别是如果你将它们放入数据库或其他东西。

答案 6 :(得分:2)

使用IsNullOrEmpty和IsNullOrwhiteSpace

进行检查
string sTestes = "I like sweat peaches";
    Stopwatch stopWatch = new Stopwatch();
    stopWatch.Start();
    for (int i = 0; i < 5000000; i++)
    {
        for (int z = 0; z < 500; z++)
        {
            var x = string.IsNullOrEmpty(sTestes);// OR string.IsNullOrWhiteSpace
        }
    }

    stopWatch.Stop();
    // Get the elapsed time as a TimeSpan value.
    TimeSpan ts = stopWatch.Elapsed;
    // Format and display the TimeSpan value. 
    string elapsedTime = String.Format("{0:00}:{1:00}:{2:00}.{3:00}",
        ts.Hours, ts.Minutes, ts.Seconds,
        ts.Milliseconds / 10);
    Console.WriteLine("RunTime " + elapsedTime);
    Console.ReadLine();

你会发现IsNullOrWhiteSpace要慢得多:/

答案 7 :(得分:1)

string.IsNullOrEmpty(str)-如果您想检查是否提供了字符串值

string.IsNullOrWhiteSpace(str)-基本上,这已经是一种业务逻辑实现(即,为什么“”不好,但是类似“ ~~”的东西才好)。

我的建议-不要将业务逻辑与技术检查混在一起。 因此,例如,string.IsNullOrEmpty是在方法开始时检查其输入参数的最佳方法。

答案 8 :(得分:0)

在.Net标准2.0中:

  

string.IsNullOrEmpty():指示指定的字符串为null还是空字符串。

Console.WriteLine(string.IsNullOrEmpty(null));           // True
Console.WriteLine(string.IsNullOrEmpty(""));             // True
Console.WriteLine(string.IsNullOrEmpty(" "));            // False
Console.WriteLine(string.IsNullOrEmpty("  "));           // False
  

string.IsNullOrWhiteSpace():指示指定的字符串是null,空还是仅由空格字符组成。

Console.WriteLine(string.IsNullOrWhiteSpace(null));     // True
Console.WriteLine(string.IsNullOrWhiteSpace(""));       // True
Console.WriteLine(string.IsNullOrWhiteSpace(" "));      // True
Console.WriteLine(string.IsNullOrWhiteSpace("  "));     // True

答案 9 :(得分:0)

注意转义字符:

String.IsNullOrEmpty(""); //True
String.IsNullOrEmpty(null); //True
String.IsNullOrEmpty("   "); //False
String.IsNullOrEmpty("\n"); //False
String.IsNullOrEmpty("\t"); //False
String.IsNullOrEmpty("hello"); //False

这里:

String.IsNullOrWhiteSpace("");//True
String.IsNullOrWhiteSpace(null);//True
String.IsNullOrWhiteSpace("   ");//True
String.IsNullOrWhiteSpace("\n");//True
String.IsNullOrWhiteSpace("\t");//True
String.IsNullOrWhiteSpace("hello");//False

如果将 Trim 应用于传递给 IsNullOrEmpty() 的值,则两种方法的结果将相同。

就性能而言,IsNullOrWhiteSpace() 会更快。