Reverse

STD.Str.Reverse( src )

STD.Uni.Reverse( src )

srcA string containing the data to reverse.
Return: Reverse returns a STRING or UNICODE value, as appropriate.

The Reverse functions return the source string with all characters in reverse order.

Example:

A := STD.Str.Reverse('ABCDE'); //A contains 'EDCBA'