当前位置: 首页 > 网络学院 > 客户端脚本教程 > VBScript > VBScript StrComp 函数

VBScript
VBScript 介绍
如何使用 VBScript
VBScript 放置
VBScript 变量
VBScript 程序
VBScript 条件语句
VBScript 循环声明
VBScript 摘要
VBScript 实例
VBScript 函数
VBScript 关键字

VBScript StrComp 函数


出处:互联网   整理: 软晨网(RuanChen.com)   发布: 2009-03-04   浏览: 195 ::
收藏到网摘: n/a

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 函数有以下返回值:

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

语法

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:
compare 参数可以有以下值:

  • 0 = vbBinaryCompare - 执行二进制比较。
  • 1 = vbTextCompare - 执行文本比较

实例 1

document.write(StrComp("VBScript","VBScript"))
输出:
0

实例 2

document.write(StrComp("VBScript","vbscript"))
输出:
-1

实例 3

document.write(StrComp("VBScript","vbscript",1))
输出:
0

评论 (0) All

登陆 | 还没注册?