Convert String to Decimal - Node.js String

Node.js examples for String:Parse

Description

Convert String to Decimal

Demo Code

String.prototype.ToDecimal = function () {
    var strValue = this;

    if ((strValue.indexOf(".") > -1 && strValue.indexOf(",") > strValue.indexOf(".")) || (strValue.indexOf(".") == -1 && strValue.indexOf(",") > -1))
        strValue = strValue.replace(/\./gi, "").replace(",", ".");

    return parseFloat(strValue);
};

Related Tutorials