Static Function Pos ( String As String, Index As Integer ) As Integer
Retorna a posição do caracter de índice Index dentro da string.
Dim iInd As Integer For iInd = 1 To 6 Print String.Pos("Benoît", iInd); " "; Next Print
1 2 3 4 5 7