iterate over string java
String str = "hello";
for (char c : str.toCharArray())
//process c
iterate over string java
String str = "hello";
for (char c : str.toCharArray())
//process c
java iterate over a string
String scientistName = "Isaac Newton";
for (int i = 0; i < scientistName.length(); i++) {
System.out.print(scientistName.charAt(i) + " "); // I s a a c N e w t o n
}
//*********************************************************
// you can cast a string into a char[]
String str = "strings are not primitive types!";
for (char ch : str.toCharArray()) {
System.out.print(scientistName.charAt(i) + " ");
}
}
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us