Here you can find the source of escape()
String.prototype.escape = function() { return this//from www. ja va2 s . c o m .replace(/&(?!\w+;)/g, '&') .replace(/</g, '<') .replace(/>/g, '>') .replace(/"/g, '"'); };
String.prototype.escape = function(){ return this.replace(/([ #;&,.+*~\':"!^$[\]()=>|\/])/g,'\\$1')
String.prototype.escape = function () { var entityMap = { "&": "&", "<": "<", ">": ">", '"': '"', "'": ''' }; return this.replace(/[&<>"']/g, function (s) { ...
String.prototype.escape = function() { var tagsToReplace = { '&': '&', '<': '<', '>': '>' }; return this.replace(/[&<>]/g, function(tag) { return tagsToReplace[tag] || tag; }); ...
String.prototype.escape = function () { var tagsToReplace = { '&': '&', '<': '<', '>': '>' }; return this.replace(/[&<>]/g, function (tag) { return tagsToReplace[tag] || tag; }); ...
String.prototype.escape = function () { var entityMap = { '&': '&', '<': '<', '>': '>', '"': '"', "'": ''', '/': '/' }; ...
String.prototype.escape = function () { var tagsToReplace = { '&': '&', '<': '<', '>': '>', }; return this.replace(/[&<>]/g, function (tag) { return tagsToReplace[tag] || tag; }); ...
String.prototype.escape = function() { var tagsToReplace = { '&': '&', '<': '<', '>': '>' }; return nl2br(this.replace(/[&<>]/g, function(tag) { return tagsToReplace[tag] || tag; })); ...
String.prototype.escape = function() { return escape(this.replace(/\s/g, '-'));
String.prototype.escapeSpecialChars = function() { return this.replace(/\\n/g, "\\n") .replace(/\\'/g, "\\'") .replace(/\\"/g, '\\"') .replace(/\\&/g, "\\&") .replace(/\\r/g, "\\r") .replace(/\\t/g, "\\t") .replace(/\\b/g, "\\b") .replace(/\\f/g, "\\f"); ...