Returns the character that corresponds to the difference between the ASCII code of a specific character in a string and 255. The string is encrypted.
For a Unicode string (or in WINDEV Mobile), the difference is calculated in relation to 65535.
EDT_Edit2 = Reverse(EDT_Edit1)
// If EDT_Edit1 contains TEST, EDT_Edit2 will contain "º¬"
Syntax
<Result> = Reverse(<Initial string>)
<Result>: Character string
Contains the converted string.
<Initial string>: Character string
Character string to encrypt. This string is not modified.
Remarks
Reverse and UNICODE
If the string passed as a parameter is an ANSI string, the result will be an ANSI string.
If the string passed as a parameter is a UNICODE string, the result will be a UNICODE string.
Remark: If the result of Reverse on an ANSI string is assigned to a UNICODE string (and vice versa), the conversion will be implicitly performed.