Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
[Blue] Dim result
For i = 1 To Len(chaine)
result = Asc(Mid(chaine, i, 1))
If result < 33 Or result > 126 And result <> 203 Then
i = 0
Exit For
End If
Next[/blue]