I have some string variables with combinations of numbers and characters. like this:
A12452
BCD23
ESK56003
Using vbscript I want to get the characters and not the numbersfrom these strings. So I should get the following results.
A
BCD
ESK
note: im on VB6 right now.