1. Re: Win32Lib --Duh
- Posted by Ralf Nieuwenhuijsen <nieuwen at XS4ALL.NL> Jan 20, 1999
- 639 views
>That's what I get for not reading the documentation, (RTFM right?) Thanks
for pointing it
>out to me, it will help. Any Ideas on the other though?(Tell the difference
between numbers
>and alpha or will upper() do that also?)
In a way, it does that as well. The trick is simple in Euphoria:
--
include wildcard.e
sequence s
s = "Euphoria2.1"
s = (upper(s) = lower(s))
-- s is now {0,0,0,0,0,0,0,0,1,1,1}
-- In other words, a 1 is now set for all *non*-alpha..
Ralf

