Here you can find the source of sanitizeToId()
/**/* w w w . j a v a 2s .c o m*/ * <p>From Ruby on Rails.</p> * * @see http://www.w3.org/TR/html4/types.html#type-name */ String.prototype.sanitizeToId = function () { return this.replace(/\]/g, '').replace(/[^-a-zA-Z0-9:.]/g, '_'); };
String.prototype.sanitize = function() { return $('<div/>').text(this).html(); };
String.prototype.sanitize = function(){ return this.replace(/</g, '<').replace(/>/g, '>');
String.prototype.sanitize = function() { return this .replace(/&/g, '&') .replace(/</g, '<') .replace(/>/g, '>') .replace(/"/g, '"') .replace(/'/g, ''')
String.prototype.sanitize = function () { var str = this.replace(/<[^>]*?>/g, ''); return str; };
"use strict"; String.prototype.sanitizeSpacing = function () { return this .replace(/[\t\r\n\-]/g, ' ') .replace(/ +/g, ' ') .trim(); };