| 12345678910111213141516 |
- //À©Õ¹StringÀ๦ÄÜ
- //ɾ³ý×Ö·û´®¶þ±ß¿Õ¸ñ
- 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, "");
- };
|