私の状態は次のようなものです。
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行をスペース付きの1行にマージしたい
使用しました
var p = Regex.Match(line, @”</p>\n\n<p>[A-z]“);
if (p.Success)
{
MessageBox.Show(p.Value);
}