Skip to content

Commit

Permalink
Merge pull request qgis#60479 from elpaso/bugfix-gh60440-to_string-no…
Browse files Browse the repository at this point in the history
…t-locale-aware

Mention in the docs that to_string is not locale-aware
  • Loading branch information
elpaso authored Feb 6, 2025
2 parents 6b4ffb3 + 685a002 commit 2f6bcb3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions resources/function_help/json/to_string
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@
"description": "Converts a number to string.",
"arguments": [{
"arg": "number",
"description": "Integer or real value. The number to convert to string."
"description": "Integer or real value. The number to convert to string. The conversion is not locale-aware, see 'format_number' for a locale-aware alternative."
}],
"examples": [{
"expression": "to_string(123)",
"returns": "'123'"
"expression": "to_string(1.23)",
"returns": "'1.23'"
}],
"tags": ["converts", "number"]
}

0 comments on commit 2f6bcb3

Please sign in to comment.