주석 정리

This commit is contained in:
daekuk
2025-12-30 10:31:39 +09:00
parent f06adb5ff1
commit 08c6bb44d5
@@ -171,12 +171,7 @@ public class Transform2Service extends BaseService {
private String genConversionSourceItems(String srcLayoutName, String cnvsncmdname) {
// \w : 영문, 숫자, _
// \. \- : 점, 하이픈
// \[ \] \* : 대괄호, 별표
// : : 콜론
// \uAC00-\uD7A3 : 한글 전체 ('가' ~ '힣')
Pattern pattern = Pattern.compile(srcLayoutName + "[\\w\\.\\[\\]\\*\\-:\\uAC00-\\uD7A3]*");
Matcher matcher = pattern.matcher(cnvsncmdname);