Page 1 of 1

Alphanumeric Characters.

Posted: Thu Aug 06, 2026 1:37 pm
by Googie85
Hii Guys!

I am using base64decode and want to determine if the result is alphanumeric.

Many Thanks,

Googie.

Re: Alphanumeric Characters.

Posted: Thu Aug 06, 2026 1:53 pm
by Emily-Elizabeth
You can always use

Code: Select all

is a number
to rule out straight numbers.

Re: Alphanumeric Characters.

Posted: Thu Aug 06, 2026 2:15 pm
by dunbarx
Or (and this may be overcomplicated unless your goal is to identify purely alphanumeric results):

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
....
Craig