zoukankan      html  css  js  c++  java
  • js去除前后空格

    <script language="javascript">
       String.prototype.trim=function(){
          return this.replace(/(^s*)|(s*$)/g, "");
       }
       String.prototype.ltrim=function(){
          return this.replace(/(^s*)/g,"");
       }
       String.prototype.rtrim=function(){
          return this.replace(/(s*$)/g,"");
       }
      </script>
      写成函数可以这样:(trim(str))
      <script type="text/javascript">
       function trim(str){ //删除左右两端的空格
           return str.replace(/(^s*)|(s*$)/g, "");
       }
       function ltrim(str){ //删除左边的空格
           return str.replace(/(^s*)/g,"");
       }
       function rtrim(str){ //删除右边的空格
           return str.replace(/(s*$)/g,"");
       }
      </script>

  • 相关阅读:
    异或运算
    GitHub使用简介
    归并排序
    快速排序
    字符串匹配
    Runner站立会议06
    Runner站立会议05
    Runner站立会议04
    记计账需求分析
    Runner站立会议03
  • 原文地址:https://www.cnblogs.com/cai170221/p/10172534.html
Copyright © 2011-2022 走看看