stringreverse(
THETEXT
)

The stringreverse( function reverses the order of a string of text characters.


Parameters

This function has one parameter:

thetext – the text to be reversed.


Description

This function reverses the order of the characters in a text string. The first character becomes the last, the last becomes the first, and all the characters in between are reversed.

stringreverse("abcdef") ☞ fedcba
stringreverse("1234") ☞ 4321
stringreverse("now is the time") ☞ emit eht si won

See Also


History

VersionStatusNotes
10.2NewNew in this version.