Home / comp / gb / string / pos 
String.Pos (gb)
Syntax
STATIC FUNCTION Pos ( String AS String, Index AS Integer ) AS Integer
Returns the position of the character of index Index in the string.

Example
DIM iInd AS Integer

FOR iInd = 1 TO 6
  PRINT String.Pos("BenoƮt", iInd); " ";
NEXT
PRINT

1 2 3 4 5 7