请问如何去掉字符串头尾的指定字符串,例如现在的字符串是:
<p></p><p></p>abc<p></p>bcd<p></p><p></p><p></p>
想去掉头尾(非头尾的不去掉)的<p></p>,最后得到:
abc<p></p>bcd
string str = "<p></p><p></p>abc<p></p>bcd<p></p><p></p><p></p>"; string result = Regex.Replace(str,"((^(<p></p>)*)|((<p></p>)*$))", ""); Console.WriteLine(result);
灰常感谢