ReverseString()

Syntax

Result$ = ReverseString(String$)
Description
Reverses all the characters in the 'String$'. The last characters becomes the first characters, and vice-versa.

Parameters

String$ The string to reverse.

Return value

A string holding the reversed string.

Example

  Debug ReverseString("Hello")  ; Will display "olleH"

Supported OS

All

<- ReplaceString() - String Index - Right() ->