当前位置: 首页 > 网络学院 > 客户端脚本教程 > VBScript > VBScript InStrRev 函数
The InStrRev function returns the position of the first occurrence of one string within another. The search begins from the end of string, but the position returned counts from the beginning of the string.
InStrRev 函数可返回某字符串在另一个字符串中出现的从结尾计起的位置。
The InStrRev function can return the following values:
InStrRev 返回以下值:
Tip: Also look at the InStr function
提示:还可以参考下InStr 函数
InStrRev(string1,string2[,start[,compare]]) |
参数 | 描述 |
---|---|
string1 | Required. The string to be searched 必选项。接受搜索的字符串表达式。 |
string2 | Required. The string expression to search for 必选项。被搜索的字符串表达式。 |
start | Optional. Specifies the starting position for each search. The search begins at the last character position by default (-1) 可选项。数值表达式,用于设置每次搜索的开始位置。如果省略,则默认值为 -1,表示从最后一个字符的位置开始搜索。如果 start 包含 Null,则出现错误。 |
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 输出: 11 |
dim txt,pos 输出: 1 |
dim txt,pos 输出: 15 |