Name

strrev — returns string reversed

Calling Sequence

res = strrev(str1)

Parameters

str1

A character string or matrix of character strings

res

A character string or matrix of character strings

Description

res = strrev(str1) Returns string reversed.

Examples

 
rev = strrev('This is a simple string')
strrev(rev)
strrev(['This is a simple string','scilab'])