Javascript String ResetBlank()
ResetBlank()
String.prototype.ResetBlank = function() { var regEx = /\s+/g; return this.replace(regEx, ' '); };