Detailed description of Javascript trim () function implementation

Source: Internet
Author: User

In JavaScript, we need to use trim in many places, but JavaScript does not have an independent trim function or method to use. Therefore, we need to write a trim function for our purpose.

Solution 1:
It is called as a prototype, that is, obj. trim (). This method is simple and widely used. The definition is as follows:

<Scriptlanguage = "javascript">
/**
* Delete spaces between the left and right sides.
*/
String. prototype. trim = function ()
{
Returnthis. replace (/(^ \ s *) | (\ s * $)/g ,");
}
/**
* Delete spaces on the left
*/
String. prototype. ltrim = function ()
{
Returnthis. replace (/(^ \ s *)/g ,");
}
/**
* Delete spaces on the right
*/
String. prototype. rtrim = function ()
{
Returnthis. replace (/(\ s * $)/g ,");
}
</Script>
Example:
﹤scripttype=”text/javascript”﹥
alert(document.getElementById(’abc’).value.trim());
alert(document.getElementById(’abc’).value.ltrim());
alert(document.getElementById(’abc’).value.rtrim());
﹤/script﹥

Solution 2:
It is called as a tool, that is, trim (obj). This method can be used for special processing needs and is defined as follows:

<Scripttype = "text/javascript">
/**
* Delete spaces between the left and right sides.
*/
Functiontrim (str)
{
Returnstr. replace (/(^ \ s *) | (\ s * $)/g ,");
}
/**
* Delete spaces on the left
*/
Functionltrim (str)
{
Returnstr. replace (/(^ \ s *)/g ,");
}
/**
* Delete spaces on the right
*/
Functionrtrim (str)
{
Returnstr. replace (/(\ s * $)/g ,");
}
</Script>
Example:
﹤scripttype=”text/javascript”﹥
alert(trim(document.getElementById(’abc’).value));
alert(ltrim(document.getElementById(’abc’).value));
alert(rtrim(document.getElementById(’abc’).value));
﹤/script﹥
  1. Top 10 most widely used Javascript frameworks
  2. JavaScript Framework tool JavaScriptMVC 1.5 released
  3. Summary of XML parsing methods using JavaScript

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.