當前位置: 首頁>>編程示例 >>用法及示例精選 >>正文


VB.NET String IsNullorWhitSpace()用法及代碼示例

IsNullorWhitSpace() 方法用於檢查指定的字符串是否包含空值或僅包含空格。

用法:

Function IsNullorWhitSpace(ByVal str as String) as Boolean

參數:

  • Str:要檢查的指定字符串。

返回值:它返回布爾值,當指定的字符串包含空值或僅包含空格時返回真值。否則,它將返回false。

程序/源代碼:

下麵給出了演示 String 類的 IsNullorWhitSpace() 方法的源代碼。給定的程序已成功編譯並執行。

'VB.NET program to demonstrate the IsNullOrWhiteSpace() method 
'of String class.

Imports System

Module Module1
    Sub Main()
        Dim str1 As String = " "
        Dim str2 As String = "Hello World"
        Dim ret As Boolean

        ret = String.IsNullOrWhiteSpace(str1)

        If ret = True Then
            Console.WriteLine("Strings str1 contains Null or only Whitespace")
        Else
            Console.WriteLine("Strings str1 does not contain Null or only Whitespace")
        End If

        ret = String.IsNullOrWhiteSpace(str2)
        If ret = True Then
            Console.WriteLine("Strings str2 contains Null or only Whitespace")
        Else
            Console.WriteLine("Strings str2 does not contain Null or only  Whitespace")
        End If
    End Sub
End Module

輸出:

Strings str1 contains Null or only Whitespace
Strings str2 does not contain Null or only  Whitespace
Press any key to continue . . .

說明:

在上麵的程序中,我們創建了一個包含 Main() 函數的模塊 Module1。 Main() 函數是程序的入口點。

在 Main() 函數中,我們創建了兩個字符串 str1 和 str2。在這裏,我們使用 String 類的 IsNullOrWhiteSpace() 方法檢查字符串是否包含空或隻有空格,然後在控製台屏幕上打印相應的消息。





相關用法


注:本文由純淨天空篩選整理自 VB.Net program to demonstrate the IsNullorWhitSpace() method of String class。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。