我有一个基本的字符串变量,其中包含字母 xa 总共三次。我尝试使用 charAt 在字符串中找到 x,然后打印 char 及其旁边的下两个字符。
我在我的代码中遇到了障碍,希望能提供任何帮助。
这是我的代码。
public class StringX{
public static void main(String[] args){
String ss = "xarxatxm";
char first = ss.charAt(0);
char last == ss.charAt(3);
if(first == "x"){
String findx = ss.substring(0, 2);
}
if(last == "x"){
String findX = ss.substring(3, 5);
}
System.out.print(findx + findX);
}
}
另外,有没有办法实现 for 循环来循环遍历寻找 x 的字符串?
我只需要一些建议来看看我的代码哪里出错了。