Posted in Javascript onJanuary 24, 2017
去除前导和后续空格 /(^\s*)|(\s*$)/g 范例如下:
函数体:
String.prototype.trim=function(){ return this.replace(/(^\s*)|(\s*$)/g,''); }
使用方法:
var s=' 你好 '; alert( s.trim() );
如果要清楚所有空格,包括中间的,范例如下:
var s='a b c '; String.prototype.clearSpacebar=function(){ return this.replace(/\s*/g,''); } alert( '|'+s.clearSpacebar()+'|');
以上就是本文的全部内容,希望本文的内容对大家的学习或者工作能带来一定的帮助,同时也希望多多支持三水点靠木!
javascript 正则表达式去空行方法
- Author -
csharpxml声明:登载此文出于传递更多信息之目的,并不意味着赞同其观点或证实其描述。
Reply on: @reply_date@
@reply_contents@