Home > Web Front-end > JS Tutorial > body text

js writing trim() function and the use of regular expressions_javascript skills

WBOY
Release: 2016-05-16 17:18:57
Original
1159 people have browsed it

1.js itself does not have a trim function, but you can write one yourself

Copy code The code is as follows:

function trim(str) {
var newStr = str.replace(/^s*$/g,'')
retrun newStr;
}

2. Remove the spaces at the left and right ends of the string. You can easily use trim, ltrim or rtrim in vbscript, but there are no these three built-in methods in js and you need to write them manually. The following implementation method uses regular expressions, which is very efficient, and adds these three methods to the built-in methods of the String object.

The method format written as a class is as follows: (str.trim();)
Copy code The code is as follows:


It can be written as a function like this: (trim(str))

Related labels:
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!