본문 바로가기

WEB/Java

indexOf()

자바의 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

 

 

'WEB > Java' 카테고리의 다른 글

Bcrypt와 비밀번호 암호화  (0) 2024.05.21
람다식  (0) 2024.02.21
예외처리  (1) 2023.12.07
Optioinal  (0) 2023.12.06
인터페이스  (0) 2023.12.06