How to find the alpha characters in a given string
Dim objStr
Dim objLength
Dim objChar
objStr=”1q2w3etest”
objLength=len(objStr)
alphacount=0
For i=1 to objLength
If not isnumeric (mid(objStr,i,1)) then
alphacount =alphacount+1
alphacharacter = alphacharacter & mid(objStr,i,1)
End if
Next
msgbox “alpha chara count is ” & alphacount
msgbox “alpha charaters are : ” & alphacharacter