how to loop through each letter of a string code example
Example: iterate over string java
String str = "hello";
for (char c : str.toCharArray())
//process c
String str = "hello";
for (char c : str.toCharArray())
//process c