RETURNS THE POSITION OF STRING C IN THE STRING S FROM POSITION P
ACTION
The function INSTR_POS(S,C,P) returns the position of string C in the string S,counted from position P. Returns 0 if string C is not found.
SYNTAX:
Result=INSTR_POS(S,C,P)
USE ERROR EXAMPLE
print instr_pos("Hello everybody","every",3)
print 7
INSTR_POS()
INSTR_POS(S,C,P)
SEE ALSO
INSTR()
INSTR_LAST()
INSTR_RIGHT()