我怎样才能使用类似的东西
return Regex.Replace("/(^)?(<br\s*\/?>\s*)+$/", "", source);
替换这种情况:
<br>thestringIwant => thestringIwant
<br><br>thestringIwant => thestringIwant
<br>thestringIwant<br> => thestringIwant
<br><br>thestringIwant<br><br> => thestringIwant
thestringIwant<br><br> => thestringIwant
它可以在开始或结束时有多个 br 标签,但我不想删除中间的任何 br 标签。