StrReverse: Difference between revisions

From NSB App Studio
Jump to navigation Jump to search
(Created page with "STRREVERSE(''string'') '''Description''' STRREVERSE returns a string created by reversing the character order of another string. The required argument, ''string'', is any va...")
(No difference)

Revision as of 20:04, 8 July 2012

STRREVERSE(string)

Description

STRREVERSE returns a string created by reversing the character order of another string. The required argument, string, is any valid string expression.

Example

REM STRREVERSE Example
'STRREVERSE reverses characters in a string
DIM Show
Show = "Terrence and Phillip"
PRINT "Forwards: " & Show
PRINT "Reverse: " & STRREVERSE(Show)

Output

Forwards: Terrence and Phillip
Reverse: pillihP dna ecnerreT