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.
おそらく初心者の質問ですが、検索しても答えが見つかりませんでした。
「Distribui\u00e7\u00e3o Alimentar」のような文字列を受け取りました。これを a のテキストとして設定したいと思いますEditText。\u00e7 と \u00e3o を「ç」と「ã」に「置き換える」にはどうすればよいですか?
EditText
前もって感謝します。
文字列置換機能付き
String newString = stringName.replaceAll("\u007", "c');
String newString2 = stringName.replaceAll("\u00e7", "a");
concatメソッドで2つを連結できます
concat