正則替換 修改字元 去除空格

端端的土化程式碼發表於2019-03-07
<script>
    // 正則替換

    // replace():  該方法的第一個引數可以寫正則

     /*var str = "abc";
    // str = str.replace("a", "v");
     str = str.replace(/a/, "v");
    // console.log(str);*/
    //vbc


    //var str = "   123AD  asadf   asadfasf  adf  ";
     // 1  替換掉字串中的所有空白
     //str = str.replace(/\s/g, "");  // g :  global  全域性匹配

    // 2. 將所有的ad替換成xx
    //str = str.replace(/ad/g, "xx");


    // 3. 將所有的ad/AD替換成xx
    // str = str.replace(/ad|AD/g, "xx");
    // str = str.replace(/ad/gi, "xx");  //  ignore  忽略大小寫

    // var str = "abc,efg,123,abc,123,a"
    // // 4. 所有的逗號替換成句號
    // str = str.replace(/,/g, "。");


    // var jsonStr = '[{"name":"張三",score:8},{"name":"張三",score:90},{"name":"張三",score:81}]'; 
    // // 5. 把所有成績都修改成100分
    // jsonStr = jsonStr.replace(/\d{1,2}/g, "100");
    // console.log(jsonStr);

    // console.log(str);
    
</script>
複製程式碼

相關文章