String.IsNullOrWhiteSpace(String) メソッド

定義

指定された文字列が null または空であるか、空白文字だけで構成されているかどうかを示します。

public:
 static bool IsNullOrWhiteSpace(System::String ^ value);
public static bool IsNullOrWhiteSpace (string value);
public static bool IsNullOrWhiteSpace (string? value);
static member IsNullOrWhiteSpace : string -> bool
Public Shared Function IsNullOrWhiteSpace (value As String) As Boolean

パラメーター

value
String

テストする文字列。

戻り値

true パラメーターが value または null であるか、Empty が空白文字だけで構成されている場合は value

次の例では、文字列配列を作成し、配列の各要素を メソッドに IsNullOrWhiteSpace 渡します。

using System;

public class Example
{
   public static void Main()
   {
      string[] values = { null, String.Empty, "ABCDE", 
                          new String(' ', 20), "  \t   ", 
                          new String('\u2000', 10) };
      foreach (string value in values)
         Console.WriteLine(String.IsNullOrWhiteSpace(value));
   }
}
// The example displays the following output:
//       True
//       True
//       False
//       True
//       True
//       True
open System

let values = 
    [| null; String.Empty; "ABCDE"
       String(' ', 20); "  \t   "
       String('\u2000', 10) |]

for value in values do
    printfn $"{String.IsNullOrWhiteSpace value}"
// The example displays the following output:
//       True
//       True
//       False
//       True
//       True
//       True
Module Example
   Public Sub Main()
      Dim values() As String = { Nothing, String.Empty, "ABCDE", 
                                 New String(" "c, 20), "  " + vbTab + "   ", 
                                 New String(ChrW(&h2000), 10) }
      For Each value As String In values
         Console.WriteLine(String.IsNullOrWhiteSpace(value))
      Next
   End Sub
End Module
' The example displays the following output:
'       True
'       True
'       False
'       True
'       True
'       True

注釈

IsNullOrWhiteSpace は、優れたパフォーマンスを提供する点を除き、次のコードに似た便利なメソッドです。

return String.IsNullOrEmpty(value) || value.Trim().Length == 0;
String.IsNullOrEmpty value || value.Trim().Length = 0
Return String.IsNullOrEmpty(value) OrElse value.Trim().Length = 0

空白文字は Unicode 標準で定義されています。 メソッドはIsNullOrWhiteSpace、 メソッドに渡されたときに の値を返す任意のtrueChar.IsWhiteSpace文字を空白文字として解釈します。

適用対象

こちらもご覧ください