当我尝试使用jQuery text()方法提取下面元素的内部Text时,
<a href="http://www.abcxyz.com">This is the Link. Learn more.</a>
我将以下字符串作为输出。
输出字符串:This is the Link. Learn more.
我不想在输出字符串中输入“”。我该如何更换它?
答案 0 :(得分:0)
试试这个,
string s = "This is the Link. Learn more.";
string newString = s.Replace("Â", "");