Equals() 方法用于检查两个字符串是否相等并返回一个布尔值。
用法:
Function Equals(ByVal str1 as String, ByVal str2 as String) as Boolean
参数:
- Str1:要比较的字符串。
- Str2:要比较的字符串。
返回值:它返回一个布尔值,如果两个字符串相等则返回真,否则返回假。
程序/源代码:
下面给出了演示 String 类的 Equals() 方法的源代码。给定的程序已成功编译并执行。
'VB.NET program to demonstrate the Equals() method
'of String class.
Imports System
Module Module1
Sub Main()
Dim str1 As String = "hello World"
Dim str2 As String = "Hello World"
Dim str3 As String = "Hello World"
Dim ret As Boolean
ret = String.Equals(str1, str2)
If ret = True Then
Console.WriteLine("Strings str1 and str2 are equal")
Else
Console.WriteLine("Strings str1 and str2 are not equal")
End If
ret = String.Equals(str2, str3)
If ret = True Then
Console.WriteLine("Strings str2 and str3 are equal")
Else
Console.WriteLine("Strings str2 and str3 are not equal")
End If
End Sub
End Module
输出:
Strings str1 and str2 are not equal Strings str2 and str3 are equal Press any key to continue . . .
说明:
在上面的程序中,我们创建了一个包含 Main() 函数的模块 Module1。 Main() 函数是程序的入口点。
在 Main() 函数中,我们创建了三个字符串 str1、str2 和 str3。在这里,我们使用 String 类的 Equals() 方法比较了字符串的值。当指定字符串的值相等时,此方法返回真,否则将返回假值。在这里,我们根据控制台屏幕上的字符串值打印了适当的消息。
相关用法
- VB.NET String Join()用法及代码示例
- VB.NET String IsNullorWhitSpace()用法及代码示例
- VB.NET String Compare()用法及代码示例
- VB.NET String Intern()用法及代码示例
- VB.NET String Concat()用法及代码示例
- VB.NET String IsNullorEmpty()用法及代码示例
- VB.NET LTrim()用法及代码示例
- VB.NET DateTime FromBinary()用法及代码示例
- VB.NET CLng()用法及代码示例
- VB.NET RTrim()用法及代码示例
- VB.NET GetChar()用法及代码示例
- VB.NET Array Reverse()用法及代码示例
- VB.NET DateTime ToBinary()用法及代码示例
- VB.NET Array Resize()用法及代码示例
- VB.NET CInt()用法及代码示例
- VB.NET CULng()用法及代码示例
- VB.NET CDbl()用法及代码示例
- VB.NET LCase()用法及代码示例
- VB.NET Array ConstrainedCopy()用法及代码示例
- VB.NET Array Clear()用法及代码示例
注:本文由纯净天空筛选整理自 VB.Net program to demonstrate the Equals() method of String class。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。