Node.js examples for String:HTML String
HTML nbsp To Space and space to nbsp
String.prototype.nbspToSpace = function() { return this.replace(/ /g, " ").replace(/\u00A0/g, " "); }/* www.j ava 2s . c o m*/ String.prototype.spaceToNbsp = function() { // return this.replace(/\s/g," "); return this.replace(/\s/g,"\u00A0"); }