1. ホーム
  2. java

[解決済み】文字列中の � を置換する方法

2022-01-26 12:37:40

質問内容

文字「�」を含む文字列があるのですが、正しく置換することができません。

String.replace("�", "");

がうまくいきません。どなたか、文字列中の � を削除/置換する方法をご存知ですか?

解決方法を教えてください。

それは、Unicode Replacement Character, \uFFFD です。 ( インフォ )

このようなもので良いのではないでしょうか。

String strImport = "For some reason my �double quotes� were lost.";
strImport = strImport.replaceAll("\uFFFD", "\"");