str=
'dg鋼結構v不錯v吧風格梵蒂岡地方的二手單反
'處理成
str=
'dg鋼結構v不錯v吧風格梵蒂岡地方的二手單反'
要求:
1.所有帶style的b標籤替換成
2.所有style="color: rgb(255, 0, 0);"
換成color="#ff0000"
3.所有span標籤換成font
let contentstyle=this.content.replace(/<\/?p[^>
]*>/gi,''
) contentstyle=contentstyle.replace(/span/g, 'font'
) console.log(contentstyle)
contentstyle=contentstyle.replace(/) contentstyle=contentstyle.replace(/>/g, '>'
) var reg4 = /style=
"[^=]*?"([
(\s+\w+=)|
>
])/g
var reg = /[\'\"]font-size\s*:\s*\d+pt;[\'\"]>/ig;
contentstyle=contentstyle.replace(reg4,'color=
"#ff0000"
>
') var index=contentstyle.indexof('
"#ff0000"
>
'); var num = 0; // 這個字元出現的次數
while(index !== -1)
contentstyle=contentstyle.replace(//g, '
"#ff0000"
>
')
js 字串擷取指定字元
let str hello world 如擷取hello indexof,查詢字串,有返回下標,沒有返回 1 let index str.indexof hello substring,引數是從哪擷取到哪,不接受負數 let cutout1 str.substring index,index 5 s...
修改檔案指定字串
這段 是網上找的,對於自己學習很有幫助 include include include define n 10000 設定檔案最大字元個數不超過10000,可更改 define show 1 void setip char filename,char srcstring,char deststrin...
JS 判斷字串中包含指定字元
1 使用includes 方法 es6 2 使用indexof 方法 es5或更老的版本 3 正規表示式 test 4 正規表示式 match includes 方法是es6中引入的,但需要注意的是不支援ie瀏覽器。實現 var str let s test substr test str.incl...