gpt4 book ai didi

java - Android 字符串替换全部不起作用

转载 作者:行者123 更新时间:2023-12-01 22:34:01 27 4
gpt4 key购买 nike

在Android应用程序中,我正在使用

String num = "10,000,000.00";
num.replaceAll("," , "");

预计:10000000.00

但是我得到:10 000 000.00

适用于大多数设备。在 Galaxy Core、Galaxy Grand duo、Galaxy Young、Galaxy Note II 和 Xperia C 等少数设备中面临问题

请帮忙。

最佳答案

replaceAll 方法不会修改 num 的值。相反,它创建一个新的 String 对象并返回它。因此,您需要做的就是将 ReplaceAll 返回的值分配给 num 变量。

但我认为您需要 replace 方法来删​​除 , 字符,而不是 replaceAll ,第一个参数是正则表达式(在这种情况下不要混合正则表达式)

医生说:

replace(CharSequence target, CharSequence replacement)
Replaces each substring of this string that matches the literal target sequence with the specified literal replacement sequence.

所以这一切都是这样的:

num = num.replace(",", "");

关于java - Android 字符串替换全部不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27143644/

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