我有一个文件显示文件所在的区域设置。因此需要查找文件何时包含某个区域设置并且其中包含某个单词。该单词可能位于页面的任何位置。
正则表达式
$ webdriver-manager update
实施例
/^.*?\b(uk_en)\b.*?\bneedle\b.*?$/m
我对正则表达式的参考 Regular expression to find two strings anywhere in input
答案 0 :(得分:1)
你真的不需要多线标志。您需要的是单行标志。另请注意,您的正则表达式包含needle
,但您的字符串包含Needle
,因此您还需要不敏感的标记。
/\b(uk_en)\b.*?\bneedle\b/si