我有一个与 C# 中的字符串操作有关的问题。
假设我有一个字符串:
"Today I ate a <a href="link here "> chocolate </a> at the <a href=\"another link here"> supermarket</a>. It was a brand of <a href=\"3rd link">Contoso</a>
我想做:
"Today I ate a chocolate at the supermarket. It was a brand of Contoso.
我可以删除</a>
它的一部分,但我不确定如何删除所有和之间的任何<a href
东西>
我该怎么做呢?
提前致谢!