Javascript String urifyAll()

Description

Javascript String urifyAll()


String.prototype.urifyAll = function(){
  var strText = this;
  var text = unescape(decodeURI(strText).replaceAll("+", " "));

  return(text);//ww w .ja v  a2s . c  o  m
}



PreviousNext

Related