我有一個字符串str
如何替換First(char c1,char c2)?
我想用char b
替換str
中的第一個字符'x'。
mCodeEditText.setText(mCodeEditText.getText().toString()
.replaceFirst("-", s.charAt(start)));
我得到這個錯誤:
The method replaceFirst(String, String) in the type String is not applicable for the arguments (char, char)
輸出只是使用'replaceFirst( 「X」, 「B」)' –