Javascript String urifyAll()
urifyAll()
String.prototype.urifyAll = function(){ var strText = this; var text = unescape(decodeURI(strText).replaceAll("+", " ")); return(text);//ww w .ja v a2s . c o m }