Reverse (String function): Difference between revisions

From m204wiki
Jump to navigation Jump to search
m (Full stop)
Line 8: Line 8:
<table class="syntaxTable">
<table class="syntaxTable">
<tr><th>%outString</th>
<tr><th>%outString</th>
<td>A string or to receive the re-ordered characters from the input method object<var class="term">string</var>.</td></tr>
<td>A string or to receive the re-ordered characters from the input method object <var class="term">string</var>.</td></tr>
<tr><th>string</th>
<tr><th>string</th>
<td>The input <var class="term">string</var> to which the method is applied.</td></tr>
<td>The input <var class="term">string</var> to which the method is applied.</td></tr>

Revision as of 17:04, 4 February 2011

Return string characters in right-to-left order (String class)


The Reverse intrinsic function returns the characters in the method object string in right-to-left order.

Syntax

%outString = string:Reverse

Syntax terms

%outString A string or to receive the re-ordered characters from the input method object string.
string The input string to which the method is applied.

Usage notes

  • The Reverse function is available as of Sirius Mods version 7.3.

Examples

  1. A Reverse method example follows:

    . . . %s is longstring %s = 'A c E g ?4lN' printText {~} = '{%s:reverse}' . . .

    will display:

    %s:reverse = Nl4? g E c A

See also

  • For details of the printtext statement, please see printText.