当前位置: 首页 > 网络学院 > 客户端脚本教程 > VBScript > VBScript Filter 函数
The Filter function returns a zero-based array that contains a subset of a string array based on a filter criteria.
Filter 函数可返回下标从零开始的 数组,其中包含以特定过滤条件为基础的字符串数组的子集。
Note: If no matches of the value parameter are found, the Filter function will return an empty array.
注意:如果在 InputStrings 中没有找到与 Value 匹配的值,Filter 将返回空数组
Note: If the parameter inputstrings is Null or is NOT a one-dimensional array, an error will occur.
注意:如果 InputStrings 为 Null 或者不是一维数组,则会发生错误。
Filter(inputstrings,value[,include[,compare]]) |
参数 | 描述 |
---|---|
inputstrings | Required. A one-dimensional array of strings to be searched 必选项。一维数组,要在其中搜索字符串。 |
value | Required. The string to search for 必选项。要搜索的字符串。 |
include | Optional. A Boolean value that indicates whether to return the substrings that include or exclude value. True returns the subset of the array that contains value as a substring. False returns the subset of the array that does not contain value as a substring. Default is True. 可选项。Boolean 值,指定返回的子字符串是否包含 Value。如果 Include 为 True,Filter 将返回包含子字符串 Value 的数组子集。如果 Include 为 False,Filter 将返回不包含子字符串 Value 的数组子集。 |
compare | Optional. Specifies the string comparison to use. 可选项。数字值指出使用的比较字符串类型 Can have one of the following values:
|
dim a(5),b 输出: Sunday |
dim a(5),b 输出: Saturday |