mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-22 00:06:12 -05:00
16 lines
464 B
Plaintext
16 lines
464 B
Plaintext
{
|
|
"name": "to_string",
|
|
"type": "function",
|
|
"groups": ["Conversions", "String"],
|
|
"description": "Converts a number to string. The conversion is not locale-aware, see 'format_number' for a locale-aware alternative.",
|
|
"arguments": [{
|
|
"arg": "number",
|
|
"description": "Integer or real value. The number to convert to string."
|
|
}],
|
|
"examples": [{
|
|
"expression": "to_string(1.23)",
|
|
"returns": "'1.23'"
|
|
}],
|
|
"tags": ["converts", "number"]
|
|
}
|