Latest web development tutorials

VBScript InStrRev 函數

VBScript 參考手冊 完整的VBScript參考手冊

InStrRev 函數返回字符串在另一字符串中首次出現的位置。 搜索從字符串的末端開始,但是返回的位置是從字符串的起點開始計數的。

InStrRev 函數可返回下面的值:

  • 如果string1 為"" - InStrRev 返回0
  • 如果string1 為Null - InStrRev 返回Null
  • 如果string2 為"" - InStrRev 返回start
  • 如果string2 為Null - InStrRev 返回Null
  • 如果string2 沒有找到- InStrRev 返回0
  • 如果在string1 中找到string2 - InStrRev 返回找到匹配字符串的位置
  • 如果start > Len(string1) - InStrRev 返回0

提示:請參閱InStr函數。

語法

InStrRev(string1,string2[,start[,compare]])

参数 描述
string1 必需。需要被搜索的字符串。
string2 必需。需要搜索的字符串表达式。
start 可选。规定每次搜索的起始位置。默认的搜索起始位置是最后一个字符(-1)。
compare 可选。规定要使用的字符串比较类型。默认是 0。

可采用下列的值:

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

實例

實例1

<script type="text/vbscript">

txt="This is a beautiful day!"
document.write(InStrRev(txt,"beautiful"))

</script>

以上實例輸出結果:

11

嘗試一下»

實例2

查找字母"i",採用不同的起始位置:

<script type="text/vbscript">

txt="This is a beautiful day!"
document.write(InStrRev(txt,"i",-1) & "<br />")
document.write(InStrRev(txt,"i",7) & "<br />")

</script>

以上實例輸出結果:

16
6

嘗試一下»

實例3

查找字母"T",採用文本和二進制比較:

<script type="text/vbscript">

txt="This is a beautiful day!"
document.write(InStrRev(txt,"T",-1,1) & "<br />")
document.write(InStrRev(txt,"T",-1,0) & "<br />")

</script>

以上實例輸出結果:

15
1

嘗試一下»

VBScript 參考手冊 完整的VBScript參考手冊