我有像
这样的字符串"Rupeshposts-this-question"
我需要一个正则表达式,可以分别检查第一个单词是否包含Rupesh
和posts
。
像[Rupesh][posts]
这样的东西。
答案 0 :(得分:0)
不知道你在追求什么,但这是将一个单词分成两部分的一种方法:
find: (Rupesh)\B(posts)
replace: \1 -something in between - \2
似乎没有\B
:(Rupesh)(posts)
。
这会找到“Rupeshposts”而不是“Rupesh帖子”):
find: ((Rupesh)(posts))
replace: \2 -something in between - \3