在Android中用字符串中的另一个字符替换一个字符?
2022-09-03 03:17:14
简单地说,我想用机器人中的另一个字符替换一个字符。我的代码:
et = (EditText) findViewById(R.id.editText1);
String str = et.getText().toString();
str.replace(' ','_');
et.setText(str);
System.out.println(str);
但在这里,“空格”没有被“下划线”所取代。我也尝试了其他角色。
请帮忙!!