parse

returns a number from the formatted string

number parse(string value,object config);
valuestringthe string which needs formatting
configobjectan object of formatting configuration options
numbera number from the formatted string
Details

The config object can contain the following attributes:

  • decimalSize - the number of decimal digits in the float number. By default, 2;
  • groupSize - the number of digits in a group. By default, 3;
  • decimalDelimiter - a char which separates the decimal part in the float number. By default, ".";
  • groupDelimiter - a char which separates groups of digits. By default, ",".
  • decimalOptional - boolean. If true, allows you not to specify the number of decimal digits in the float number.
  • prefix - string. Adds prefix to the formatted number.
  • sufix - string. Adds suffix to the formatted number.
  • minusPosition - string. The position of a negative sign.
  • minusSign - string|array. A sign for a negative number.
const num1 = webix.Number.parse("(10'009.00)", {
    decimalSize: 2, groupSize: 3, 
    decimalDelimiter: ".", groupDelimiter: "'",
    minusPosition:"parentheses",
    minusSign:"()",
});
// -> -10009
See also
Back to top