What is the easiest/best/most correct way to iterate through the characters of a string in Java?

前端 未结 15 1223
挽巷
挽巷 2020-11-22 11:14

StringTokenizer? Convert the String to a char[] and iterate over that? Something else?

15条回答
  •  囚心锁ツ
    2020-11-22 11:39

    I use a for loop to iterate the string and use charAt() to get each character to examine it. Since the String is implemented with an array, the charAt() method is a constant time operation.

    String s = "...stuff...";
    
    for (int i = 0; i < s.length(); i++){
        char c = s.charAt(i);        
        //Process char
    }
    

    That's what I would do. It seems the easiest to me.

    As far as correctness goes, I don't believe that exists here. It is all based on your personal style.

提交回复
热议问题