Regex匹配两个字符串之间的所有字符。例子:“这只是\n简单的句子”。我想在“这是”和“句子”之间匹配每一个字符。应忽略换行符。我搞不懂正确的语法。
3 回答
慕标5832272
TA贡献1966条经验 获得超4个赞
(?<=This is)(.*)(?=sentence)
(?<=)
(?=)
This is(.*)sentence
.
.
.*
.*?
更新
This is(?s)(.*)sentence
.
更新2:
(?<=is \()(.*?)(?=\s*\))
慕码人2483693
TA贡献1860条经验 获得超9个赞
懒惰量词
(?<=This is)(.*)(?=sentence)
my first sentence. This is my second
This is my first sentence. This is my second sentence.
见演示.
?
(?<=This is).*?(?=sentence)
DOTALL模式以匹配跨线中断
(?s)
(?s)(?<=This is).*?(?=sentence)
参照系
- 3 回答
- 0 关注
- 873 浏览
添加回答
举报
0/150
提交
取消