Home  >  Article  >  Web Front-end  >  Js remove spaces in string (implementation code)_javascript skills

Js remove spaces in string (implementation code)_javascript skills

WBOY
WBOYOriginal
2016-05-16 17:14:16888browse

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);

Statement:
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