Javascripttrim space removal function implementation code _ javascript skills

Source: Internet
Author: User
Tags rtrim
Remove spaces between the left and right sides of the string. You can easily use trim, ltrim, or rtrim In vbscript. However, these three built-in methods are not available in js and need to be written manually. The following implementation method uses a regular expression, which is efficient and adds the three methods to the built-in methods of the String object.

<Input type = "text" name = "mytxt" value = "12345678"/> <input type = "button" name = "cmd1" onclick = "mytxt2.value = mytxt. value. trim () "value =" Remove spaces on both sides "/> <input type =" text "name =" mytxt2 "/> <input type =" button "name =" cmd1 "onclick =" mytxt3.value = mytxt. value. ltrim () "value =" leading space on the left "/> <input type =" text "name =" mytxt3 "/> <input type =" button "name =" cmd1 "onclick =" mytxt4.value = mytxt. value. rtrim () "value =" Remove right space "/> <input type =" text "name =" mytxt4 "/> <script language =" javascript "> 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, "");} script
[Ctrl + A select all Note: If you need to introduce external Js, You need to refresh it to execute]


You can write a function as follows:

The Code is as follows:


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.