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.
Function DeleteChars(SourceString As String)
Dim x, y
For x = 1 To Len(SourceString)
Select Case Asc(Mid(SourceString, x, 1))
Case 12, 14, 22, 33 ' Do Nothing. (Replace these
' numbers with a list of the ASCII values of
' the characters you want to delete.)
Case Else
y = y & Mid(SourceString, x, 1)
End Select
Next x
DeleteChars = y
End Function