Reverse (String function): Difference between revisions
Jump to navigation
Jump to search
mNo edit summary |
|||
Line 1: | Line 1: | ||
This [[Intrinsic | This [[Intrinsic classes|intrinsic]] function returns the characters in the | ||
method object string in right-to-left order. | method object string in right-to-left order. | ||
Revision as of 14:47, 18 December 2010
This intrinsic function returns the characters in the method object string in right-to-left order.
The Reverse function is available as of version 7.3 of the Sirius Mods.
Reverse syntax
%outStr = string:Reverse
Syntax Terms
- %outStr
- A string or Longstring to receive the re-ordered characters from the input string.
- string
- The input string or Longstring.
Examples
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