当前位置: 首页 > 网络学院 > 客户端脚本教程 > VBScript > VBScript StrComp 函数
The StrComp function compares two strings and returns a value that represents the result of the comparison.
StrComp 函数可返回一个表明字符串比较结果的值
The StrComp function can return one of the following values:
StrComp 函数有以下返回值:
StrComp(string1,string2[,compare]) |
参数 | 描述 |
---|---|
string1 | Required. A string expression 必选项。任意有效的字符串表达式。 |
string2 | Required. A string expression 必选项。任意有效的字符串表达式。 |
compare | Optional. Specifies the string comparison to use. Default is 0 可选项。指示在计算字符串时使用的比较类型的数值。如果省略,则执行二进制比较 Can have one of the following values:
|
document.write(StrComp("VBScript","VBScript")) 输出: 0 |
document.write(StrComp("VBScript","vbscript")) 输出: -1 |
document.write(StrComp("VBScript","vbscript",1)) 输出: 0 |