Upper, Lower and FirstUp commands
Upper, Lower and FirstUp commands are used to
convert texts.
Upper or Ucase is used to convert the entire text to upper case. Lower or LCase
converts the text to lower case.
The exception is FirstUp or FUp. When setting FirstUp to Y, the first letter of
the word will be converted to upper case and the rest of the text will be
converted to lower case.
Syntax:
Upper=Y|N
Lower=Y|N
FirstUp=Y|N
Example:
{Upper=Y} Hello World {Upper=N}
Will be: HELLO WORLD
{Lower=Y} HELLO WORLD {Lower=N}
Will be: hello world
{FirstUp=Y} hElLo wOrlD {Firstup=N}
Will be: Hello World
For FirstUp, If a period is found, the next
letter will be converted to upper case also.
Example:
{FirstUp=Y} m.f.s. TRANS systems Will be:
M.F.S. Trans Systems
|