Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
jQueryのtext()メソッドを使って以下の要素の内部Textを抽出しようとしたところ、
<a href="http://www.abcxyz.com">This is the Link. Learn more.</a>
以下の文字列を出力として取得しています。
出力文字列:This is the Link. Learn more.
This is the Link. Learn more.
出力文字列に「Â」を入れたくありません。どうすれば交換できますか?
これを試して、
string s = "This is the Link. Learn more."; string newString = s.Replace("Â", "");