StrReverse

From NSB App Studio
Revision as of 20:04, 8 July 2012 by Brendon (talk | contribs) (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...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

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