String.Pos (gb)
Static Function Pos ( String As String, Index As Integer ) As Integer
Restituisce la posizione del carattere dell'indice
Index nella stringa.
Esempio
DIM iInd AS Integer
FOR iInd = 1 TO 6
PRINT String.Pos("BenoƮt", iInd); " ";
NEXT
PRINT