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.
Dim s As String = "test-8"
Dim i As Integer
For i = 0 To s.Length - 1
If Char.IsDigit(s.Chars(i)) Then
ElseIf Char.IsLetter(s.Chars(i)) Then
End If
Next