1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
String.prototype.Trim = function() { return this.replace(/(^\s*)|(\s*$)/g, ""); } String.prototype.LTrim = function() { return this.replace(/(^\s*)/g, ""); } String.prototype.RTrim = function() { return this.replace(/(\s*$)/g, ""); } str.replace(new RegExp(oStr, "gm"), nStr); |