[Java] String.replace(), replaceAll() method 정리

GilLog·2020년 11월 12일
1

Java

목록 보기
6/29

replace()

문자열에 지정한 문자" "가 있으면 새로 지정한 문자" "로 바꿔서 출력한다.

String str = "abcdeababcssababcabcddeee"; 
str.replace("abc", "길");
  • 실행 결과
길deab길ssab길길ddeee

replaceAll()

정규표현식을 지정한 문자로 바꿔서 출력한다.

String str = "abcdeababbssababcabcddeee"; 
str.replaceAll("[abc]", "길");
  • 실행 결과
길길길de길길길길길ss길길길길길길길길ddeee

🙆‍♂️ 참고사이트 🙇‍♂️

JAVA String 클래스 메소드 정리

[Java] String.replace 와 replaceAll 차이점[iseunghan]

profile
🚀 기록보단 길록을 20.10 ~ 22.02 ⭐ Move To : https://gil-log.github.io/

0개의 댓글