如何判斷C#中的字符串是否為空

c#
小樊
83
2024-08-23 18:57:26

在C#中,可以使用以下方法來判斷字符串是否為空:

  1. 使用 String.IsNullOrEmpty 方法:
string str = "test";
if (String.IsNullOrEmpty(str))
{
    Console.WriteLine("String is null or empty.");
}
else
{
    Console.WriteLine("String is not null or empty.");
}
  1. 使用 String.IsNullOrWhiteSpace 方法:
string str = "test";
if (String.IsNullOrWhiteSpace(str))
{
    Console.WriteLine("String is null, empty, or consists only of white-space characters.");
}
else
{
    Console.WriteLine("String is not null, empty, or consists only of white-space characters.");
}

這兩種方法可以幫助您確定字符串是否為空或僅包含空格或制表符等空白字符。

0