正则表达式删除字符串中的分号

时间:2018-03-06 14:49:36

标签: javascript

我正在尝试从字符串

中的匹配结尾删除分号

所以:

 @import "base.scss";

    .cb {
     display: inline-block;

     position: absolute;
     width: 20px;
     height: 20px;
     left: 10px;
     top: 5px;

     background: #000000;
     border-radius: 5px;
     box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.75);
   }

    .cb label {

    display: inline-block;

    position: absolute;
    width: 12px;
    height: 12px;
    left: 4px;
    top: 10px;

    background: #000000;
    border-radius: 5px;
   }

   .cb input[type=checkbox]:checked + label {
      background: #FFFFFF;
    }


    成为:

 var ourstring = " (1); (2);; (3) ; (4) ;; (5) ; ; (6); ;  (7); ;; (8)";

问题是我不知道该怎么做。我试过使用正则表达式:(1) (2) (3) (4) (5) ; (6) ; (7) ;; (8) 里面替换,但没有得到想要的结果。请告诉我如何在普通的javascript

中做到这一点

1 个答案:

答案 0 :(得分:5)

我想这就是你想要的。



ids2      fisrt     second            third
a    2012-06-09      2012-05-17          <NA>
b    2012-07-13       <NA>               <NA>
c    2012-08-25      2013-04-11     2014-11-03
&#13;
&#13;
&#13;

它删除零个或多个空格,后跟一个或多个相邻的分号,这些分号在右括号后直接出现。