ToUpper and ToLower (String functions): Difference between revisions

From m204wiki
Jump to navigation Jump to search
mNo edit summary
m (printtext)
Line 15: Line 15:


==Usage notes==
==Usage notes==
<ul><li>These functions are available as of <var class="product">[[Sirius Mods]]</var> version 7.3.</ul>
<ul><li>These functions are available as of <var class="product">[[Sirius Mods|"Sirius Mods"]]</var> Version 7.3.</ul>


==Examples==
==Examples==
Line 23: Line 23:
     %s is longstring
     %s is longstring
     %s = 'A c E g ?4lN ,8, t v { Z'
     %s = 'A c E g ?4lN ,8, t v { Z'
     printText {~} = '{%s:toUpper}'
     [[PrintText statement|printText]] {~} = '{%s:toUpper}'
     printText {~} = '{%s:toLower}'
     printText {~} = '{%s:toLower}'
     . . .
     . . .
Line 33: Line 33:


==See also==
==See also==
<ul><li>For details of the <var>printtext</var> statement, please see <var>[[Intrinsic classes#printtext|printText]]</var>.</ul>
{{Template:String:ToUpper and ToLower footer}}
{{Template:String:ToUpper and ToLower footer}}

Revision as of 09:34, 23 February 2011

Translate to uppercase/lowercase (String class)


The ToUpper and ToLower functions return the alphabetic characters in the method object string as all-uppercase or all-lowercase characters, respectively. Non-alphabetic characters are returned as is, and the input string undergoes no other change.

Syntax

%outString = string:ToUpper

%outString = string:ToLower

Syntax terms

%outString A string to receive the all-uppercase or all-lowercase characters converted from the input string.
string The input, method object string.

Usage notes

Examples

  1. Example ToUpper and ToLower statements follow:

    . . . %s is longstring %s = 'A c E g ?4lN ,8, t v { Z' printText {~} = '{%s:toUpper}' printText {~} = '{%s:toLower}' . . .

    The results are:

    %s:toUpper = A C E G ?4LN ,8, T V { Z %s:toLower = a c e g ?4ln ,8, t v { z

See also