
-----------------------------------
pokerface
Thu Nov 18, 2004 7:17 pm

range of letters help? plz
-----------------------------------
i want to make a if statement that has a range of letters
example: if word (i) = (*a* all the way to *z*) then etc...
how do i do this?

-----------------------------------
Tony
Thu Nov 18, 2004 7:42 pm


-----------------------------------

put "A to Z : ", ord ('A'), " to ", ord ('Z')
put "a to z : ", ord ('a'), " to ", ord ('z')


-----------------------------------
wtd
Thu Nov 18, 2004 7:44 pm

Re: range of letters help? plz
-----------------------------------
i want to make a if statement that has a range of letters
example: if word (i) = (*a* all the way to *z*) then etc...
how do i do this?

if ord (input) >= ord ('a') and ord (input) = ord (first) and ord (ch) 