如何从元素的内部文本中删除Â

时间:2013-10-01 13:19:35

标签: jquery html

当我尝试使用jQuery text()方法提取下面元素的内部Text时,

<a href="http://www.abcxyz.com">This is the Link. Learn more.</a>

我将以下字符串作为输出。

输出字符串:This is the Link. Learn more.

我不想在输出字符串中输入“”。我该如何更换它?

1 个答案:

答案 0 :(得分:0)

试试这个,

string s = "This is the Link. Learn more.";
string newString = s.Replace("Â", "");