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

去除段首段尾的  和全角的空格的正则,代码看起来不如之前的版本,简单,需要更了解正则的特殊字符。

<script language="javascript">
<!--
String.prototype.trim = function(){
return this.replace(/^(&nbsp;|[\s ])+|(&nbsp;|[\s ])+$/g, "" );
}
alert("---"+ " &nbsp; &nbsp;this is a test kwgkwg  &nbsp; ".trim() + "---");
/ --></script>
1、去段首段尾的空格(包括半角的空格代码&nbsp;和全角的空格" ")
2、段中的空格(包括半角的空格代码&nbsp;和全角的空格" ")给予保留!

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/wfwzjd.html