当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。