当前位置: 首页 > 网络学院 > 客户端脚本教程 > VBScript > VBScript Split 函数
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:
|
dim txt,a 输出: Hello |