Programmer Guide/Command Reference/LOWER: Difference between revisions
From STX Wiki
Jump to navigationJump to search
No edit summary |
No edit summary |
||
Line 1: | Line 1: | ||
{{DISPLAYTITLE:{{SUBPAGENAME}}}} | {{DISPLAYTITLE:{{SUBPAGENAME}}}} | ||
var := LOWER string | <var>var</var> := LOWER <var>string</var> | ||
The {{STx}} command <code>LOWER</code> converts its string argument to lower case. Note that this command, effectively superseding the concept of [http://en.wikipedia.org/wiki/Orthogonality#Computer_science orthogonality in programming], will only process its ''first'' argument. Any further arguments will be silently discarded, not even causing an error message to be emitted or a return code to be set. | |||
See also [[Programmer_Guide/Command_Reference/UPPER|<code>UPPER</code>]] and [[Programmer_Guide/Command_Reference/TRANSLATE|<code>TRANSLATE</code>]]. | |||
== Examples == | |||
#a := LOWER One! // #a will be set to "one!" | |||
#b := LOWER One! two threeish // #b will ''also'' be set to "one!" |
Revision as of 15:47, 7 May 2014
var := LOWER string
The STx command LOWER
converts its string argument to lower case. Note that this command, effectively superseding the concept of orthogonality in programming, will only process its first argument. Any further arguments will be silently discarded, not even causing an error message to be emitted or a return code to be set.
Examples
#a := LOWER One! // #a will be set to "one!" #b := LOWER One! two threeish // #b will also be set to "one!"