Notice
Recent Posts
Recent Comments
«   2024/11   »
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
Archives
Today
Total
관리 메뉴

충분히 쌓여가는

5.4 null과 NullPointerException - 문자열 잘라내기 substring() 본문

이것이 자바다/05 참조 타입

5.4 null과 NullPointerException - 문자열 잘라내기 substring()

빌드이너프 2024. 3. 31. 17:11

문자열에서 특정 위치의 문자열을 잘라내어 가져오고 싶다면 substring() 메소드를 사용

 

substring(int beginIndex): beginIndex에서 끝까지 잘라내기

subString(int beginIndex, int endIndex): beginIndex에서 endIndex 앞까지 잘라내기

 

fitstNum 변수는 "880815"를 참조

secondNum 변수는 "1234567"을 참조

String ssn = "880815-1234567";
String firstNum = ssn.substring(0, 6);
String secondNum - ssn.substring(7);
8 8 0 8 1 5 - 1 2 3 4 5 6 7
0 1 2 3 4 5 6 7 8 9 10 11 12 13

 

예제

package ch05.sec05;

public class SubStringExample {
	public static void main(String[] args) {
		String ssn = "880815-1234567";
		
		String firstNum = ssn.substring(0, 6);
		System.out.println(firstNum);
		
		String secondNum = ssn.substring(7);
		System.out.println(secondNum);
	}
}
880815
1234567