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.
我有类似的字符串
"Rupeshposts-this-question"
我需要一个正则表达式,它可以分别检查第一个单词是否包含Rupesh和posts。
Rupesh
posts
像[Rupesh][posts]这样的东西。
[Rupesh][posts]
真的不知道你在追求什么,但这是将一个词分成两部分的一种方法:
find: (Rupesh)\B(posts) replace: \1 -something in between - \2
似乎在没有\B:的情况下也可以工作(Rupesh)(posts)。
\B
(Rupesh)(posts)
这会找到“Rupeshposts”但不是“Rupesh posts”):
find: ((Rupesh)(posts)) replace: \2 -something in between - \3