VBScript StrComp 函数

定义和用法

StrComp 函数可比较两个字符串,并返回表示比较结果的一个值。

StrComp 函数可返回下面的值:

  • -1 (如果 string1 < string2)
  • 0 (如果 string1 = string2)
  • 1 (如果 string1 > string2)
  • Null (如果 string1 或 string2 为 Null)

语法

  1. StrComp(string1,string2[,compare])
参数 描述
string1 必需的。字符串表达式。
string2 必需的。字符串表达式。
compare 可选的。规定要使用的字符串比较类型。默认是 0。Optional. Specifies the string comparison to use. Default is 0 可采用的值:
0 = vbBinaryCompare - 执行二进制比较
1 = vbTextCompare - 执行文本比较

实例

例子 1

  1. document.write(StrComp("VBScript","VBScript"))

输出:

  1. 0

例子 2

  1. document.write(StrComp("VBScript","vbscript"))

输出:

  1. -1

例子 3

  1. document.write(StrComp("VBScript","vbscript",1))

输出:

  1. 0