InStrRev Function |
Syntax:
Group:
Description: Returns the index where S2$ last matches S1$. If no match is found, 0 is returned.
Parameters:
Parameter |
Description |
Search for S2$ in this string value. If this value is Null then Null is returned. |
|
Search S1$ for this string value. If this value is Null then Null is returned. |
|
Start searching for S2$ ending at this index in S1$. If this is omitted then start searching from the end of S1$. |
Example:
Sub Main
Debug.Print InStrRev("Hello","l") ' 4
EndSub
See Also: