VS Code 찾아바꾸기, 정규표현식

정규호·2023년 12월 13일
0

Before String : int cutAmt

find : (int\s)(.)
replace : $1 total\u$2

After String : int totalCutAmt

출처 : [VS CODE] 찾아 바꾸기에서 정규식으로 대소문자 바꾸기

Before String : Command

find : (^[A-Za-z])
replace : \l$1

After String : command

출처 : [Python] re - 정규표현식 일치 부분을 대문자로 변환하기

profile
The Man Who Lift

0개의 댓글