(首先,如果这是一个基本问题,我很抱歉,但我是编码新手)
我想要做的是验证字符串是否为某种字符组合,然后使用 if-else 语句替换它们,如下所示:
String RAWUserInput = sometextfield.getText().toString();
if (RAWUserInput.contains("example") {
String UserInput = RAWUserInput.replace("example", "eg");
}else{
String UserInput = RAWUserInput;}
sometextbox.setText(UserInput);
然后访问 if-else 语句之外的字符串。我不知道最后一行怎么办,因为java找不到字符串,我该怎么办?
提前致谢 :)