IT/자바함수
indexOf
Beautifulkim
2018. 4. 28. 01:02
package study;
public class Index_Study {
public static void main(String[] args) {
//검색기능
// 0 1 2 34 5 6 7 8 <= index
String str = "우리나리 대한민국";
int index = str.indexOf('국');
System.out.printf("'국'의 위치는 : %d\n", index);
index = str.indexOf("대한");
// 떠블커테션 앞에 역슬러쉬 붙이면 문자처리됨
System.out.printf("\" 대한 \"의 위치는 : %d\n", index);
}
}