Answer the question
In order to leave comments, you need to log in
JAVA array, how to access a string element in an array?
I have a one dimensional array which consists of 2 words. How do I iterate over each word character by character?String[] massiv = {"Hello","World"};
Answer the question
In order to leave comments, you need to log in
String[] stringArray = {"Hello","world"};
//перебираем по очереди каждое слово массива строк
for (String string : stringArray) {
/*
* конвертируем текущий элемент массива строк в массив символов
*/
char[] charArray = stringArray[0].toCharArray();
/*
* Перебираем посимвольно массив символов полученыый выше
* до тех пор пока массив не закончится
*/
for (char simvol : charArray) {
//делаем чтонибкдь с символом simvol
//например:
System.out.println("'" + simvol + "' " );
}
System.out.println();
}
/*
* Результат выполнения
*
* 'H' 'e' 'l' 'l' 'o'
* 'w' 'o' 'r' 'l' 'd'
*/
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question