gpt4 book ai didi

.net - 正则表达式匹配第二行

转载 作者:行者123 更新时间:2023-12-04 02:07:02 30 4
gpt4 key购买 nike

我正在尝试使用 WebHarvy (.NET) 中的表达式来匹配段落中的第二行,它们之间有一个双换行符

例子

This is the first line

This is the second line

我试过使用 \n(.*)\n\n 但它返回空换行符而不是第二行。

请查看https://regex101.com/r/9GjHTM/1

请指教

谢谢

最佳答案

WebHarvey regex , 你可以捕获你需要的东西:

WebHarvy will extract only those portion(s) of the main text which matches the group(s) specified in the RegEx string.

所以,使用

(?:\r\n?|\n){2}(.+)

表达式匹配:

  • (?:\r\n?|\n){2} - 正好出现两次 ({2})
    • \r\n? - CR(回车)后跟 1 或 0(=可选)LF(换行符)
    • | - 或者
    • \n - LF(换行符)
  • (.+) - 捕获第1组(与该子模式匹配的子字符串将被WebHarvey输出)

关于.net - 正则表达式匹配第二行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42502809/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com