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.
Sub CountChars(myString As String)
Dim Counts(255) As Integer
Dim n As Integer
For n = 1 To Len(myString)
Counts(Asc(Mid$(myString, n, 1))) = Counts(Asc(Mid$(myString, n, 1))) + 1
Next n
For n = 0 To 255
If Counts(n) > 0 Then
Debug.Print Chr$(n), Counts(n)
End If
Next n
End Sub