-1
試圖搜索特定文本並檢查它是否存在於該行中。如果確實顯示「是」,如果否,則顯示「否」。JS將RegEx與While循環結合使用
目前我有:
const str = `Hello my name is Stack Overlow.`
const publish = /Hello/g;
let pub;
while ((pub = publish.exec(str)) !== null) {
if (pub.index === publish.lastIndex) {
publish.lastIndex++;
}
pub.forEach((ko, groupIndex) => {
document.write(`"Exists": "${ko}",<br>`);
});
}
沒問題。另外,代碼中的「是」和「否」在哪裏? – trincot