string

From RPTools Wiki
Revision as of 05:37, 23 November 2023 by Azhrei (talk | contribs) (Modified to be the string function, with a note redirecting to the string data typ)
Jump to navigation Jump to search

A string in MapTool is a series of alphanumeric characters enclosed in single or double quotation marks.

Example

[h:exampleString = "This is an example string."]


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 Template:Types:string.


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().

Usage

string(val)


See Also