Home  >  Article  >  Web Front-end  >  Add trim, ltrim, rtrim methods to String object in Javascript_javascript tips

Add trim, ltrim, rtrim methods to String object in Javascript_javascript tips

WBOY
WBOYOriginal
2016-05-16 19:26:01903browse

Below we will use this attribute to add three methods to the String object: Trim, LTrim, RTrim (the function is the same as the function of the same name in VbScript)

Copy code The code is as follows:
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, "");
}

How about, It’s simple, let’s look at an example of use:
Copy the code The code is as follows:

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