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

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

VBScript Split 函数


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

The Split function returns a zero-based, one-dimensional array that contains a specified number of substrings.
Split 函数可返回基于 0 的一维数组,其中包含指定数目的子字符串

语法

Split(expression[,delimiter[,count[,compare]]])

参数 描述
expression Required. A string expression that contains substrings and delimiters
必选项。字符串表达式,包含子字符串和分隔符。如果 expression 为零长度字符串,Split 返回空数组,即不包含元素和数据的数组。
delimiter Optional. A string character used to identify substring limits. Default is the space character
可选项。用于标识子字符串界限的字符。如果省略,使用空格 ("") 作为分隔符。如果 delimiter 为零长度字符串,则返回包含整个 expression 字符串的单元素数组。
count Optional. The number of substrings to be returned. -1 indicates that all substrings are returned
可选项。被返回的子字符串数目,-1 指示返回所有子字符串。
compare Optional. Specifies the string comparison to use.
可选项。指示在计算子字符串时使用的比较类型的数值。

Can have one of the following values:
可以在下面这些值中选择一个:

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

实例 1

dim txt,a
txt="Hello World!"

a=Split(txt)
document.write(a(0) & "<br />")
document.write(a(1))
输出:
Hello
World!

评论 (0) All

登陆 | 还没注册?