我有一個基本的字符串變量,其中包含字母x總共三次。 我試圖在字符串中使用charAt來查找x,然後打印字符和它旁邊的下兩個字符。查找字符串中的各種字符
我在我的代碼中遇到了一個障礙,並希望得到任何幫助。
這是我的代碼。
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還呢?
我只是需要一些建議,看看我的代碼出錯了。
'「x」'是一個字符串,''x''是一個字符 – PermGenError 2013-02-10 13:41:02
啊,是的注意謝謝。 – PrimalScientist 2013-02-10 13:48:14