Home / lang / rinstr 
RInStr
Syntax
Position = RInStr ( String AS String , Substring AS String [ , Start AS Integer , Comparison AS Integer ] )

Returns the position of the last occurrence of Substring in String from right to left.

If Start is specified, the search starts at the position Start.

Comparison can be one of the following value:

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

Example
PRINT RInStr("Gambas is basic", "bas")

11

Example
PRINT RInStr("Gambas is basic", "bas", 10)

4

Example
PRINT RInStr("Gambas is basic", "not")

0


See also
String Functions