Hii Guys!
I am using base64decode and want to determine if the result is alphanumeric.
Many Thanks,
Googie.
Alphanumeric Characters.
Moderators: Klaus, FourthWorld, heatherlaine, kevinmiller, robinmiller
-
Emily-Elizabeth
- Posts: 218
- Joined: Mon Jan 03, 2022 7:10 pm
- Contact:
Re: Alphanumeric Characters.
You can always use to rule out straight numbers.
Code: Select all
is a numberRe: Alphanumeric Characters.
Or (and this may be overcomplicated unless your goal is to identify purely alphanumeric results):
Craig
Code: Select all
...
get yourBase64decodeResults
repeat for each char tChar in it
if tChar is not in "0123456789abcdefghijklmnopqrstuvwxyz" then
answer "notAlpha:" && tChar
exit to top
end repeat
....
