溫馨提示×

c# string怎樣判斷是否為空

c#
小樊
85
2024-10-18 18:31:28
欄目: 編程語言

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

string str = "your string here";

if (string.IsNullOrEmpty(str))
{
    Console.WriteLine("The string is empty or null.");
}
else
{
    Console.WriteLine("The string is not empty.");
}

string.IsNullOrEmpty(str)方法會檢查字符串str是否為null或者為空字符串(即長度為0)。如果滿足這些條件之一,該方法將返回true,否則返回false。

0