상세 컨텐츠

본문 제목

[RPA] 유용한 정규식

IT/RPA(UiPath)

by Adonis_ 2019. 12. 13. 14:46

본문

1. 숫자추출
System.Text.RegularExpressions.Regex.Replace(str, "[^0-9]+",String.Empty)

2. 한글포함여부
System.Text.RegularExpressions.Regex.IsMatch(str,".*[ㄱ-ㅎㅏ-ㅣ가-힣]+.*")

3. 전화번호
System.Text.RegularExpressions.Regex.IsMatch(str,"^\d{2,3}[.-]?\d{3,4}[.-]?\d{4}$")

4. html 태그 제거
Regex.Replace(str, "<[^>]*>", "  ")

 

5. 글자 추출

Systehttp://m.Text.RegularExpressions.Regex.Match(str, "([\s\S]*?)items").Groups(1).Value.Trim

Systehttp://m.Text.RegularExpressions.Regex.Match(str, "([\s\S]*?)items")(0).Groups(1).Value.Trim

 

※ 정규식 추출 참고

https://regex101.com/

 

'IT > RPA(UiPath)' 카테고리의 다른 글

[RPA] DB Connection  (0) 2019.12.26
[RPA] Orchestrator - Non Working Days 판단  (0) 2019.12.13
[RPA] Get Job Activity 에러처리  (0) 2019.12.05
[RPA] Studio X란?  (0) 2019.11.21
[RPA] IMG 파일 PDF병합하기  (0) 2019.11.15

관련글 더보기

댓글 영역