I am working on a Windows application written in VBScript, and I need to check the string for any non-numeric characters, in particular anything az. I understand that I could do this using the InStr () function in combination with a loop that checks az, but that just seems ridiculous. I have very little experience with VBScript, so I really don't know where to do this.
What is a good method to solve this situation?
source
share