String.Index (gb)
Static Function Index ( String As String, Byte As Integer ) As Integer
Retourne l'index du caractère à la position
Pos dans la chaîne de caractères.
Exemples
DIM iInd AS Integer
DIM sStr AS String
sStr = "Benoît"
FOR iInd = 1 TO Len(sStr)
PRINT String.Index(sStr, iInd); " ";
NEXT
PRINT
1 2 3 4 5 5 6