반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- 테이블
- 인텔리제이
- CSS
- Visual Studio Code
- IntelliJ
- 배열
- string
- Maven
- table
- 이탈리아
- input
- json
- Button
- 자바
- CMD
- javascript
- 자바스크립트
- Java
- Array
- vscode
- windows
- 이클립스
- 문자열
- date
- ArrayList
- list
- Files
- html
- js
- Eclipse
Archives
- Today
- Total
어제 오늘 내일
[Java] String / charAt(index) 사용법 및 예제 본문
charAt(index)
Syntax
java.lang.String
public char charAt(int index)
매개변수
index
- 반환할 문자의 위치를 나타내는 정수 인덱스.
- 인덱스는 0부터 시작합니다.
리턴 값
주어진 인덱스에 위치한 문자(char).
Exception
IndexOutOfBoundsException
- 만약 인덱스가 범위를 벗어나면 (index < 0 또는 index >= length()), 이 예외가 발생합니다.
예제. 특정 문자열 읽기
코드
public class CharAtExample {
public static void main(String[] args) {
String str = "Hello, World!";
// 특정 인덱스의 문자 가져오기
char ch1 = str.charAt(0); // 'H'
char ch2 = str.charAt(7); // 'W'
char ch3 = str.charAt(12); // '!'
// 결과 출력
System.out.println("Character at index 0: " + ch1);
System.out.println("Character at index 7: " + ch2);
System.out.println("Character at index 12: " + ch3);
// 잘못된 인덱스를 사용하면 예외 발생
char ch4 = str.charAt(20); // 예외 발생
}
}
결과
설명
str.chatAt(0);
str.charAt(7);
str.charAt(12);
각각 문자열 'Hello, World!'의
1번째, 8번째, 13번째 문자를 반환합니다.
str.charAt(20);
잘 못된 인덱스를 사용하면 'StringIndexOutOfBoundsException' Exception이 발생합니다.
반응형
'IT > Java' 카테고리의 다른 글
[Java] java, javac 차이점 (0) | 2021.11.01 |
---|---|
[Java] char 배열을 문자열로 변환하기 (0) | 2021.10.31 |
[Java] 문자열을 char 배열로 변환하기 (toCharArray()) (0) | 2021.10.31 |
[Java] 뒤에서부터 문자열 위치 찾기 (lastIndexOf()) (0) | 2021.10.31 |
[Java/Jackson] JsonNode를 JSON 문자열로 변환하기 (0) | 2021.09.06 |
Comments