stringreverse
RESULT

The stringreverse statement reverses the characters in a string of text. The original text is replaced in situ.


Parameters

This statement has one parameter:

result – Text to be reversed (field or variable)


Description

This statement reverses the characters in a string of text. The original text is replaced in situ.

This example checks to see if the text in field A is a palindrome (same text forwards and backwards).

local x
x=A
stringreverse x
if x=A
    message "This is a palindrome"
endif

See Also


History

VersionStatusNotes
10.0No ChangeCarried over from Panorama 6.0.