ant를 사용하여 build.xml을 작성하다 보면 변수를 가공해야하는 일이 있다
그때 사용하면 좋은 기능이 propertyregex 이다 (ant contlib 필요)
대표적인 사용법은 아래와 같다
<propertyregex property="수정 후 변수"
input="수정 전 변수"
regexp="바꿀 문자"
replace="대체 문자"
casesensitive="false" />
추가적인 옵션은 아래의 링크에서 확인해보면 된다.
http://ant-contrib.sourceforge.net/tasks/tasks/propertyregex.html
'CI_CD > ant' 카테고리의 다른 글
[ant] scp 옵션 참고 문서 (0) | 2021.04.22 |
---|---|
[ant] tomcat 재기동 스크립트 (0) | 2021.04.02 |
[ant] jenkins choice parameter로 target 분기하기 (0) | 2020.12.18 |
[ant] 쉘에 출력된 문자 변수에 저장하기 (0) | 2020.10.13 |
[ant] foreach 사용법 (0) | 2020.05.18 |