목록자바indexOf (2)
Yeonee's Story
안녕하세요. https://blog.naver.com/sysysy0302 여니입니다 :) - 주민등록번호는 13자리의 숫자로 구성 - 앞 6자리는생년월일 정보, 뒷 7자리 중 첫번째 숫자는 성별 정보 - 입력 데이터는 -을 포함한 14자리의 문자열 형태 - "901231-1234567"인 경우 901231-1까지 출력 - "030708-457890"인 경우 030708-4까지 출력 package String; public class Quiz_03 { public static void main(String[] args) { String id = "901231-1234567"; // 주민등록번호 13자리 System.out.println(id.substring(0,8)); // 0 위치부터 8 위치 직전까지..
안녕하세요. 여니입니다 :) package String; public class String2 { public static void main(String[] args) { String s = "I Like Java and Python and C."; // 1) 문자열 변환 System.out.println(s.replace("and",",")); // "and"를 ","로 변환 // I Like Java, Python, C. System.out.println(s.substring(7)); // 인덱스 기준 7부터 시작 (이전 내용은 삭제) // Java and Python and C. System.out.println(s.substring(s.indexOf("Java"))); // "Java" 가 시작하..