我创建了一个正则表达式来匹配一个可能如下所示的字符串:
then "hello I am here" blah blah
或者
then hello blah blah
我正在尝试匹配之后的单词then
。对于上述字符串,预期的输出是
"hello I am here" //if the words are in quotes
或者
hello
我试过这个正则表达式"(\w*[\s]*)*"|(?<=\bthen\s)(\w+)
,它在网上运行良好,但在 Firefox 中显示错误。错误