String.Index (gb)
Static Function Index ( String As String, Byte As Integer ) As Integer
Returns the index of the character at position
Pos in the string.
Examples
DIM iInd AS Integer
DIM sStr AS String
sStr = "BenoƮt"
FOR iInd = 1 TO Len(sStr)
PRINT String.Index(sStr, iInd); " ";
NEXT
PRINT