PARSENUMBER function
TextualNumber
The text string containing a number.
Returns
The number found in the given text string.
Interprets a text string as a number and returns it. PARSENUMBER("18.4")PARSENUMBER("18.4") returns 18.4.
PARSENUMBER takes the language of the app into account when converting text strings to numbers. When PARSENUMBER is used with an app whose language is set to German, for instance, text strings representing numbers should use a comma (",") as a decimal separator. When PARSENUMBER is used with an app whose language is set to UK English, a decimal point (".") should be used. Language-appropriate thousands separators may be used.
This function is very flexible in terms of what input it can parse. For instance, PARSENUMBER("003,500.50 kg")PARSENUMBER("003,500.50 kg") returns 3500.5.
This function is specific to Calcapp.
Related functions
- Use FORMATNUMBER to create text strings that can be interpreted by this function.
- Use PARSEFRACTION to parse a fraction (like "3 3/4").
- Use PARSEPERCENTAGE to parse a percentage (like "75%").
- Use PARSESCIENTIFIC to parse numbers using scientific notation (like "1.5E+03").
- Use TONUMBER to convert text strings to numbers if you only need a limited feature set.
Examples
Returns 18.4, if the decimal separator of the language the app is configured to use is a decimal point. If the decimal separator is a decimal comma, an error is returned.
Returns the array { 18.4, -23 }{ 18,4; -23 }, if the decimal separator of the language the app is configured to use is a decimal point. If the decimal separator is a decimal comma, an array of errors is returned.
Returns 3500.5, if the decimal separator of the language the app is configured to use is a decimal point. If the decimal separator is a decimal comma, an error is returned.