Some ways to iterate through the characters of a string in Java are:
- Using
StringTokenizer? - Converting the
Stringto achar[]and iterating over that.
What is the easiest/best/most correct way to iterate?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
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, thecharAt()method is a constant time operation.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.