0
我想下面的字符串fromat和擊穿匹配到一個數組正則表達式匹配的文本
var str = "A123456 some text F unwaned text blabla A123457 another text string F";
弄成這個樣子
["A123456 some text F", "A123457 another text string F"]
我想下面的字符串fromat和擊穿匹配到一個數組正則表達式匹配的文本
var str = "A123456 some text F unwaned text blabla A123457 another text string F";
弄成這個樣子
["A123456 some text F", "A123457 another text string F"]
var str = "A123456 some text F unwaned text blabla A123457 another text string F";
str.match(/A.*?F/g)
// => ["A123456 some text F", "A123457 another text string F"]
謝謝,那有效。 –
@IuthisaamMuhammadSaeed,最好清楚地說明什麼規則適用於拆分問題中的字符串。 – falsetru
適用什麼規則分裂? (從'A'到'F'?) – falsetru