strrev
Reverses the order of characters in the given strings
Syntax
res = strrev(str1)
Arguments
- 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'])
Report an issue | ||
<< strrchr | Chaînes de caractères | strsplit >> |