我的情况是这样的:
1:3 And God said, Let there be light: and there was light.</p>
<p>And God saw the light, that it was good: and God divided the light from the darkness.
我想在 C# 中使用正则表达式将这 2 行与空格合并为一行
我用了
var p = Regex.Match(line, @”</p>\n\n<p>[A-z]“);
if (p.Success)
{
MessageBox.Show(p.Value);
}