String.Reverse

Top  Previous  Next

 

Syntax

function String.Reverse(Str: string): string

 

Alternative Names

ibec_StringTurn

 

Description

Returns the string Str but with the characters in reverse order.

 

Example

execute udsblock

as

begin

  valueout = String.Reverse('12345'); 

  /* displays a dialog with '54321' as the text */

  GUI.ShowMessage(valueout);

end