最新的Web開發教程
 

VBScript中STRCOMP功能


<完整的VBScript參考

StrComp函數比較兩個字符串並返回表示該比較結果的值。

StrComp函數可返回下面的值之一:

  • -1 (if string1 < string2)
  • 0 (if string1 = string2)
  • 1 (if string1 > string2)
  • (if string1 or string2 is Null)

句法

StrComp(string1,string2[,compare])

參數 描述
string1 需要。 字符串表達式
string2 需要。 字符串表達式
compare 可選的。 指定要使用的字符串比較。 默認值為0

可以有以下值之一:

  • 0 = vbBinaryCompare - 執行二進制比較
  • 1 = vbTextCompare - 執行文本比較

實施例1

response.write(StrComp("VBScript","VBScript"))

Output:

0

實施例2

response.write(StrComp("VBScript","vbscript"))

Output:

-1

實施例3

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

Output:

0

<完整的VBScript參考