numbervalue
Locale-aware numeric parse.
Syntax
Section titled “Syntax”v = numbervalue(text, decimal_sep, group_sep)Description
Section titled “Description”Like value but accepts custom decimal and thousands-group separators. Useful for parsing numbers in non-English locales ('.' and ',' swapped).
Example
Section titled “Example”numbervalue('3.456,78', ',', '.') % 3456.78See also
Section titled “See also”value— Convert a text string to a number.