在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。