Home  >  Article  >  Web Front-end  >  Javascript modifies the String object and adds the function of removing spaces (sample code)_javascript skills

Javascript modifies the String object and adds the function of removing spaces (sample code)_javascript skills

WBOY
WBOYOriginal
2016-05-16 17:11:351012browse

Copy code The code is as follows:

//#region remove spaces
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, "");
}
//#endregion

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn