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

Js remove spaces in string (implementation code)_javascript skills

WBOY
Release: 2016-05-16 17:14:16
Original
893 people have browsed it

1. Remove the spaces at both ends of the string

String.prototype.trim=function (){return this.replace(/(^/s*)|(/s*$)/g,'');}

2. Remove all spaces in the string:

String.prototype.sTrim = function (){return this.replace(//s/g, ''); }

or:

var s = "asd ddd bbb sss";
var reg = //s/g;
var ss = s.replace(reg, "");
alert(ss);

Related labels:
js
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!