我需要删除空段元素。
<p id="abc"></p>
<p id="cde">Text<br/>More text</p>
text = Regex.Replace(text, @"<p(.*?)></p>", "");
我的正则表达式删除了第一段和第二段,我只需删除第一段。
答案 0 :(得分:4)
<p.*?><\/p>
您可以在此处查看https://regex101.com/r/nH8tB2/2
C#工作样本:https://dotnetfiddle.net/6sb3VY
C#代码:
using System;
using System.Text.RegularExpressions;
public class Program
{
public static void Main()
{
var str = @"<p id=""abc""></p>
<p id=""cde"">Text<br/>More text</p>";
Console.WriteLine(Regex.Replace(str, @"<p.*?><\/p>", ""));
}
}