String.RInStr (gb)

Static Function RInStr ( String As String, Pattern As String [ , From As Integer, Mode As Integer ] ) As Integer

Returns the position of the last occurrence of Pattern in String.

If From is specified, the search begins at the position From.

If the substring is not found, this function returns zero.

Mode can be set to gb.IgnoreCase for a case insensitive comparison.

This function returns the index of the found character, not its byte position.

Example

PRINT String.RInStr("Benoît", "t");; RInStr("Benoît", "t")
6 7