Here you can find the source of escape()
String.prototype.escape = function () { var tagsToReplace = { '&': '&', '<': '<', '>': '>' };/* w w w. ja v a2 s .c o m*/ return this.replace(/[&<>]/g, function (tag) { return tagsToReplace[tag] || tag; }); };
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 entityMap = { '&': '&', '<': '<', '>': '>', '"': '"', "'": ''', '/': '/' }; ...
String.prototype.escape = function() { return this .replace(/&(?!\w+;)/g, '&') .replace(/</g, '<') .replace(/>/g, '>') .replace(/"/g, '"'); };
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; })); ...