EditPlus1 underscore to camel case notation # underscore to camel case notation Regex: _([a-z0-9]) Replace with: \U$1 // BEFORE: db_column_name // AFTER: dbColumnName # camel case to underscore notation editplus 찾을말 : ([a-z])([A-Z]+) 바꿀말 : $1_$2 # 출처: https://czar.tistory.com/1040 [너는 개발자냐?] 2020. 11. 21. 이전 1 다음