POSITION:028,114
COLOUR:STANDARD
TEXT:00,Another way of changing the state of a data object is by altering
TEXT:16,the case of alphabetic characters. Euphoria has two library routines
TEXT:16,that can do this for you.
TEXT:32,To change any characters between 'A' and 'Z' in both atom and sequence
TEXT:16,data objects to lowercase, you use the lower() library routine:
COLOUR:EUPHORIA
TEXT:32,include wildcard.e
TEXT:16,   = lower( )
COLOUR:POINTS
TEXT:00,ro         o
COLOUR:STANDARD
TEXT:32,With lower(), a character string of "Euphoria" and "EUPHORIA" passed
COLOUR:POINTS
TEXT:16,                           o
COLOUR:STANDARD
TEXT:00,to this library routine as   would produce a string of "euphoria" that
COLOUR:POINTS
TEXT:16,                                         ro
COLOUR:STANDARD
TEXT:00,is then stored in the receiving variable   . With single atom values like
TEXT:16,'J' or 74, what is stored in the receiving variable is 'j' or 106.
