From http://www.w3schools.com (Copyright Refsnes Data)
Complete VBScript Reference
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.
The InStrRev function can return the following values:
Tip: Also look at the InStr function
| InStrRev(string1,string2[,start[,compare]]) |
| Parameter | Description |
|---|---|
| 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) |
| compare | Optional. Specifies the string comparison to use.
Default is 0 Can have one of the following values:
|
|
Dim txt,pos txt="This is a beautiful day!" pos=InStrRev(txt,"his") document.write(pos) Output: 2 |
|
Dim txt,pos txt="This is a beautiful day!" 'textual comparison pos=InStrRev(txt,"B",-1,1) document.write(pos) Output: 11 |
|
Dim txt,pos txt="This is a beautiful day!" 'binary comparison pos=InStrRev(txt,"T") document.write(pos) Output: 1 |
|
Dim txt,pos txt="This is a beautiful day!" 'binary comparison pos=InStrRev(txt,"t") document.write(pos) Output: 15 |
Complete VBScript Reference
From http://www.w3schools.com (Copyright Refsnes Data)