Lower()?
John,
There isn't a built-in lower function in ARexx, but you can use the translate()
function to do the conversion. For example,
say translate("ABC","abc","ABC") [D [D [D [D [D [D You'll need to list the
characters you want translated, including the high-range ASCII characters if
these will occur in your text as well.
-Bill