「VB.NET」IsNullOrWhiteSpaceで空文字またはNullまたは空白を判定する

2021年11月29日

書式
String.IsNullOrWhiteSpace(文字列)
StringクラスのIsNullOrWhiteSpaceメソッドを使用して、文字列が空文字かNullか空白文字のいずれかであることを判定
します。

使用例

'半角スペース
Dim cftA As String = ""
Dim cftB As String = "study"
Dim cftC As String = Nothing
'全角スペース
Dim cftD As String = " "
 
Console.WriteLine(String.IsNullOrWhiteSpace(cftA))
Console.WriteLine(String.IsNullOrWhiteSpace(cftB))
Console.WriteLine(String.IsNullOrWhiteSpace(cftC))
Console.WriteLine(String.IsNullOrWhiteSpace(cftD))

実行結果
True
False
True
True

VB.net

Posted by arkgame