자바의 indexOf()는 특정문자의 위치를 찾아준다
없는 문자면 -1을 반환한다
사용법
String word="자바 indexOf() 자바함수";
System.out.println(word.indexOf("자"));
System.out.println(word.indexOf("자",5));
System.out.println(word.indexOf("굥"));
System.out.println(word.indexOf(1));
결과
0
13
-1
-1