[Overview][Constants][Types][Procedures and functions] |
Reverse the letters in a string.
Source position: strutils.pp line 54
function AnsiReverseString( |
const AText: AnsiString |
):AnsiString; |
AText |
|
String to reverse |
Reversed string
AnsiReverseStringreturns a string with all characters of ATextin reverse order.
if the result of this function equals AText, ATextis called an anagram.
None.