在将文本设置为edittext时,阻止或过滤“字符”或“字符串”和“,”。 例如,如果我从列表中获取此字符串以在edittext中显示
edittext.setText("Total , 20.80");
我的预期输出应仅过滤并显示 20.80 ,并省略以下内容
在设置为editText
预期输出
edittext.setText("20.80");
答案 0 :(得分:0)
您可以使用正则表达式。 像这样的东西。
String re = "^\\d{0,9}\\.\\d{1,4}$"