1 <?xml version="1.0" encoding="UTF-8"?>
3 * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab
4 * Copyright (C) INRIA -
6 * Copyright (C) 2012 - 2016 - Scilab Enterprises
8 * This file is hereby licensed under the terms of the GNU GPL v2.0,
9 * pursuant to article 5.3.4 of the CeCILL v.2.1.
10 * This file was originally licensed under the terms of the CeCILL v2.1,
11 * and continues to be available under such terms.
12 * For more information, see the COPYING file which you should have received
13 * along with this program.
16 <refentry xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink"
17 xmlns:svg="http://www.w3.org/2000/svg" xmlns:db="http://docbook.org/ns/docbook"
18 xmlns:scilab="http://www.scilab.org" xml:lang="en" xml:id="strrev">
20 <refname>strrev</refname>
22 Reverses the order of characters in the given texts
27 <synopsis>res = strrev(str1)</synopsis>
30 <title>Arguments</title>
36 a character string or matrix of character strings.
44 a character string or matrix of character strings.
51 <title>Description</title>
53 <code>res = strrev(str1)</code> returns string reversed.
57 <title>Examples</title>
58 <programlisting role="example"><![CDATA[
59 rev = strrev('This is a simple string')
61 strrev(['This is a simple string','scilab'])