string (function)

From RPTools Wiki
Jump to navigation Jump to search

string() Function

Introduced in version 1.3b48
Returns the string value that is passed in as another data type. When passed a string, no change is made. When a number is passed, it is returned as a string in its minimal representation (meaning as few characters as possible to produce an accurate value, ie. no leading zeroes or spaces and no plus sign for positive numbers). When passed a JSON Object or JSON Array, the JSON will be converted to a string and returned without any formatting (no embedded newlines or whitespace).

If you're looking for the string data type, see Category:Variable Type.
When formatting of the numeric value is required (such as leading spaces or zeroes, a forced plus/minus sign, a specific number of digits, and so on), use strformat() instead.

Usage

string(val)


See Also