본문으로 바로가기

charAt

public char charAt(int index)

: 매개값으로 주어진 인덱스의 문자를 리턴합니다.

: 인덱스의 번호는 0번부터 문자열 길이-1 까지 입니다.

 

예시

인덱스 번호

String test = "apple";

for(int i=0; i<test.length(); i++) {
    System.out.print(test.charAt(i));
} // apple