gpt4 book ai didi

android - 替换String中的UTF8字符

转载 作者:搜寻专家 更新时间:2023-11-01 07:37:43 25 4
gpt4 key购买 nike

我的 Android 应用程序中有一个包含中文字符的简单字符串,我想用另一个字符替换一个字符...

作为示例,我有这段代码:

String old_string = "啤酒";
String new_string = old_string.replaceAll("一", "啤");
Log.d(TAG, "transformed "+old_string+" into "+new_string);

这不会做任何事情:

transformed 啤酒 into 啤酒

还尝试使用 replace 而不是 replaceAll 但没有任何运气。

最佳答案

你需要在 replaceAll 调用中切换参数的顺序:

replaceAll("啤", "--") 

关于android - 替换String中的UTF8字符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8424631/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com