從我想要捕捉的字符串"Fabulous two, three, or six night Stay For Two With Meals"
說一句話「夜」前5個詞語。 在這個例子中,我想['Fabulous', 'two', 'three', 'or', 'six']
如何捕獲某個詞的前幾句正則表達式
我目前使用s.scan(/(?:\w+)/)
返回標記化陣列來獲得:
["fabulous", "two", "three", "or", "six", "night", "Stay", "For", "Two", "With", "Meals"]
,然後我通過索引它來查找單詞之夜「。但是我想知道如果regexp也可以完成這一步。