我用正則表達式匹配任何字符串包含某個詞(如:「黑暗」)正則表達式 - JavaScript的 - 匹配字和不匹配的另一個字
if (features[i].attributes.color.match(new RegExp(dark, "ig"))))
..
..
如何修改它匹配任何字符串包含「暗;但不包含'藍色'? 我想:
if(
features[i].attributes.color.match(new RegExp(dark, "ig"))) && !features[i].attributes.color.match(new RegExp(blue, "ig")))
}
..
..
沒有運氣
你爲什麼不只是使用'.indexOf()'? – Blender
什麼是'黑暗'?如果它不是一個包含字符串的變量,那麼它應該是一個字符串... – elclanrs
如果你清理了格式並給出了你想要匹配的實際字符串,那將會很好。 – MatthewJ