我想檢索所有關鍵字正則表達式 - 關鍵字
我的關鍵字列表的最後出現之後出現的詞中最後一次出現後如何檢索詞 - 與,或,不是
的例子
input = "tom hanks and hugh jack"
output = hugh jack
input ="tom hanks and hugh jack or bill bob"
output = bill bob
input ="tom hanks and hugh jack or bill bob not brad pitt"
output = brad pitt
關鍵字可以改變嗎?它們會一直是「和」,「或」,還是「不」? – talemyn 2013-05-03 18:11:20
這些是唯一的三個關鍵字 – Surabhi 2013-05-03 18:13:20
這些行中的東西'input.split(/ \ b(?:and | or | not)\ b /)。pop();' – 2013-05-03 18:15:36