当前位置: 首页 > 网络学院 > 客户端脚本教程 > VBScript > VBScript InStr 函数
The InStr function returns the position of the first occurrence of one string within another.
InStr 函数可返回某字符串在另一字符串中第一次出现的位置。
The InStr function can return the following values:
InStr 函数返回以下值:
Tip: Also look at the InStrRev function
提示:还可以参考下InStrRev函数
InStr([start,]string1,string2[,compare]) |
参数 | 描述 |
---|---|
start | Optional. Specifies the starting position for each search. The search begins at the first character position by default. This parameter is required if compare is specified 可选项。数值表达式,用于设置每次搜索的开始位置。如果省略,将从第一个字符的位置开始搜索。如果 start 包含 Null,则会出现错误。如果已指定 compare,则必须要有 start 参数 |
string1 | Required. The string to be searched 必选项。接受搜索的字符串表达式。 |
string2 | Required. The string expression to search for 必选项。要搜索的字符串表达式。 |
compare | Optional. Specifies the string comparison to use. Default is 0 可选项。指示在计算子字符串时使用的比较类型的数值 Can have one of the following values:
|
dim txt,pos 输出: 2 |
dim txt,pos 输出: 6 |
dim txt,pos 输出: 0 |