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:

Compare the Triplets | Javascript | hackerrank.com

07-05-2020 hackerrank.com

How to upload file by using request module

18-03-2017 request module node js

How to use http-post request in node js

14-03-2017 http-post module node js

Filter for insert HTML in Angular Js

06-03-2017 filter show html angular js html

Get random strings from given string In javascript

21-02-2017 javascript random string