Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 excel 中使用宏来对特定列中的句子字符串进行排序。
我希望能够使用正则表达式or而不是for.
or
for
到目前为止,正则表达式正在提取其中包含两个字母or的所有内容。
你可以使用这个词边界\b:
\b
(^|\b)or(\b|$)
尝试使用:
\bor\b
如果您正在寻找or特定的词,或者:
(?<!\bf)or
如果您想匹配or除 word 之外的所有内容for。