0
我需要得到的所有單詞的開始/結束索引的字符串得到啓動的所有單詞/結束索引字符串
我想:
let txt="hello here are some words";
const reg = new RegExp(/[(\s|\.)]/, 'i');
while (match = reg.exec(txt)) {
console.log('from: '+match.index+' to:'+(match.index+match.input.length))
}
但這只是進入死循環
有幫助嗎?
有什麼期望輸出 – brk
出現一次:你不能讓一組一組內部'[] '和OR'|'隱含在該集合中,所以'|'將被作爲''|「'''被採用。 –
你需要字符串中所有單詞的開始和結束字母嗎? – gaganshera