Advantage Concepts
Advantage Expression Engine function that reverses the order of characters in a string
REVERSE(<cString>) -> cReverseString
<cString> A character string to be converted to reverse order.
REVERSE() returns a copy of <cString> with all characters in the string put in reverse order.
REVERSE() is a character function that reverses all characters in a string. For example, REVERSE( "abcdef" ) would return the string "fedcba". The REVERSE() function is useful with languages that read character data from right to left rather than left to right.
Note Advantage Expression Engine functions can be used in expressions such as record filter expressions and index expressions. They are not necessarily scalars supported within SQL statements. For a list of supported SQL scalar functions, see Supported Scalar Functions.
Note Memo, binary, and image fields are not supported in this Advantage Expression Engine function. If memo, binary, or image fields are used with this expression engine function, the Advantage Expression Engine will be unable to evaluate the expression.
None.