StrComp 函数

比较两个字符串,返回一个代表比较结果的整数值。

语法:


StrComp (string1 As String, string2 As String[, Compare As Integer]) As Integer

参数:

string1: Any string expression

string2: Any string expression

Compare: This optional parameter sets the comparison method. If Compare = 1, the string comparison is case-sensitive. If Compare = 0, no distinction is made between uppercase and lowercase letters.

返回值:

Integer

错误代码:

5 无效的过程调用

示例:


Sub ExampleStrComp
Dim iVar As Single
Dim sVar As String
    iVar = 123.123
    sVar = Str$(iVar)
    MsgBox strcomp(sVar , Str$(iVar),1)
End Sub

请支持我们!