如果我的字符串是:
mary lamb The beast the castle THE large lake
我想生产:
mary lamb
The beast
the castle
The large lake
如果我做CCD_ 1,那么它只在最后一个上分裂;";无论情况如何。
您需要使用
(?i)(?=btheb)
(?i)s+(?=btheb)
请参阅regex演示详细信息:
(?i)
-不区分大小写的修饰符s+
-一个或多个空白(?=btheb)
-一个与the
作为一个完整单词紧随其后的位置相匹配的正向前瞻
RegEx:的替代方案
-
用
CHR(13)+"the"
代替"the"
-
做一个更简单的"文本到列",使用
n
作为分隔符并拆分为行。