summaryrefslogtreecommitdiffstats
path: root/source/rainerscript/functions/rs-cstr.rst
blob: 3cf007ef7363453d3286ded0bb628d4cb35b258d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
******
cstr()
******

Purpose
=======

cstr(expr)

Converts expr to a string value.


Example
=======

In the following example a string is created from the expression.

.. code-block:: none

   cstr(5*4);

produces

.. code-block:: none

   "20"