1
UTF8字符我有一個簡單的字符串與中國文字在我的Android應用程序,並希望與另一個替換一個字符...替換字符串
爲樣本,我有這樣的代碼:
String old_string = "啤酒";
String new_string = old_string.replaceAll("一", "啤");
Log.d(TAG, "transformed "+old_string+" into "+new_string);
這將不會做任何事情:
transformed 啤酒 into 啤酒
還與replace
代替replaceAll
試過沒有任何的運氣。
相當愚蠢的我....謝謝 – Matthieu