首页 > 编程 > regex > 正文

去除段首段尾的 和全角的空格的正则

2020-01-20 22:21:36
字体:
来源:转载
供稿:网友
<script language="javascript">
<!--
String.prototype.trim = function(){
return this.replace(/^( |[/s ])+|( |[/s ])+$/g, "" );
}
alert("---"+ "    this is a test kwgkwg    ".trim() + "---");
/ --></script>
1、去段首段尾的空格(包括半角的空格代码 和全角的空格" ")
2、段中的空格(包括半角的空格代码 和全角的空格" ")给予保留!
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表