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

How to remove whitespace in javascript

藏色散人
Release: 2023-01-04 09:35:15
Original
3120 people have browsed it

Javascript method to remove whitespace characters: 1. Use the replace regular matching method to remove spaces in the string; 2. Use the "str.trim()" method to delete whitespace characters at both ends of the string; 3. Use " $.trim(str)" method removes whitespace characters at both ends of the string.

How to remove whitespace in javascript

The operating environment of this article: windows7 system, javascript version 1.8.5, Dell G3 computer.

js removes spaces (blank characters) from strings

Use js to remove spaces from strings. There are three methods:

1. Regular matching method

Remove all spaces in the string: str = str.replace(/\s*/g,"");

Remove spaces at both ends of the string: str = str.replace(/^\s*|\s*$/g,"");

Remove the spaces on the left side of the string: str = str.replace(/^\s*/ ,"");

Remove the spaces on the right side of the string: str = str.replace(/(\s*$)/g,"");

Example:

var str = " 6 6 ";
var str_1 = str.replace(/\s*/g,"");
console.log(str_1); //66
var str = " 6 6 ";
var str_1 = str.replace(/^\s*|\s*$/g,"");
console.log(str_1); //6 6//输出左右侧均无空格
var str = " 6 6 ";
var str_1 = str.replace(/^\s*/,"");
console.log(str_1); //6 6 //输出右侧有空格左侧无空格
var str = " 6 6 ";
var str_1 = str.replace(/(\s*$)/g,"");
console.log(str_1); // 6 6//输出左侧有空格右侧无空格
Copy after login

2. str.trim() method

The trim() method is used to delete the blank characters at both ends of the string and return it. The trim method does not affect the original characters. The string itself, it returns a new string.

Defect: Only the spaces at both ends of the string can be removed, but the spaces in the middle cannot be removed

Example:

var str = " 6 6 ";
var str_1 = str.trim();
console.log(str_1); //6 6//输出左右侧均无空格
Copy after login

To remove the left space alone, use str.trimLeft(); //var str_1 = str.trimLeft();

To remove spaces on the right side alone, use str.trimRight();//var str_1 = str.trimRight();

3. JQ method: $.trim(str) method

The $.trim() function is used to remove whitespace characters at both ends of a string.

Note: The $.trim() function will remove all newline characters, spaces (including consecutive spaces) and tab characters at the beginning and end of the string. If these whitespace characters are in the middle of the string, they are retained and not removed.

Example:

var str = " 6 6 ";
var str_1 = $.trim(str);
console.log(str_1); //6 6//输出左右侧均无空格
Copy after login

[Recommended learning: javascript advanced tutorial]

The above is the detailed content of How to remove whitespace in javascript. For more information, please follow other related articles on the PHP Chinese website!

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!