Sanitization in java sript

sanitization
java script

Basically sanitization is used for escaping special characters while inserting into database.

function mysql_real_escape_string (str) {
    return str.replace(/[\0\x08\x09\x1a\n\r"'\\\%]/g, function (char) {
        switch (char) {
            case "\0":
                return "\\0";
            case "\x08":
                return "\\b";
            case "\x09":
                return "\\t";
            case "\x1a":
                return "\\z";
            case "\n":
                return "\\n";
            case "\r":
                return "\\r";
            case "\"":
            case "'":
            case "\\":
            case "%":
                return "\\"+char; // prepends a backslash to backslash, percent,
                                  // and double/single quotes
        }
    });
}

How to this function ?

var template = "<div> Hi Welcome to this example.</div>";
mysql_real_escape_string(template);

 

You might also like:

Convert Time 24 hrs to 12 hrs format In javascript

12-03-2017 date javascript 12hrs convert

Remove last two characters from given string

06-03-2017 substring javascript remove

How to find Angular Errors

06-03-2017 errors angularjs exceptionHandler

How to set or update or push the values into Object in javacript

27-02-2017 javascript set update push object

Email validation regular expression in javascript

22-02-2017 email validation regex