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)
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:
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