.Net(VB、C#)で文字列の空チェック
String.IsNullOrEmptyメソッドを利用する方法。
1 2 3 4 5 | Dim str As String = "ABCDE" If String.IsNullOrEmpty(str) Then Console.WriteLine("文字列は空です") End If |
1 2 3 4 5 6 | string str = "ABCDE"; if (string.IsNullOrEmpty(str)) { Console.WriteLine("文字列は空です"); } |
別の方法。
1 2 3 4 5 | Dim str As String = "ABCDE" If str Is Nothing OrElse str.Length = 0 Then Console.WriteLine("文字列は空です") End If |
1 2 3 4 5 6 | string str = "ABCDE"; if (str == null || str.Length == 0) { Console.WriteLine("文字列は空です"); } |