Notice
Recent Posts
Recent Comments
Link
«   2025/05   »
1 2 3
4 5 6 7 8 9 10
11 12 13 14 15 16 17
18 19 20 21 22 23 24
25 26 27 28 29 30 31
Tags
more
Archives
Today
Total
관리 메뉴

게으른 완벽주의자의 개발자 도전기

전화번호(tell) 자바 문자열 치환(replace함수) 본문

Spring Boot

전화번호(tell) 자바 문자열 치환(replace함수)

머리방울 2022. 9. 21. 15:25

replace

String a = "010,1111,2222"

a = a. replace("," , "-");

a. replace("기존문자" , "바꿀값")

 

실전 적용하기

controller

String tell = empVO.getEmpTell().replace(",", "-");
empVO.setEmpTell(tell);