0

jQueryのtext()メソッドを使って以下の要素の内部Textを抽出しようとしたところ、

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

以下の文字列を出力として取得しています。

出力文字列:This is the Link. Learn more.

出力文字列に「Â」を入れたくありません。どうすれば交換できますか?

4

1 に答える 1

0

これを試して、

string s = "This is the Link. Learn more.";
string newString = s.Replace("Â", "");
于 2013-10-01T13:24:49.387 に答える