728x90
반응형
파이썬에서 정규식 사용
정규식으로 찾고 일부만 추출하기
>>> import re
>>> _str=" 65 0 0 -50 243 323 Tm\n asdfasdf"
# 정규식에서 `()`로 싸여진 곳이 `group`
>>> matches = re.finditer(r"^\d+ \d+ \d+ \-\d+ (\d+) \d+ Tm$",b,re.MULTILINE)
>>> for match in matches:
... print(match.group())
... group_num = len(match.groups())
... print(match.group(group_num))
...
65 0 0 -50 243 323 Tm
243
728x90
728x90
BIG
'Programming > Python' 카테고리의 다른 글
python 에서 redis를 메시지 queue로 사용 (0) | 2020.06.19 |
---|---|
time 명령어를 이용한 간단한 처리 시간 측정 (0) | 2020.06.17 |
python code reformatter black + pycharm (0) | 2020.06.13 |
패키지, 모듈, import 에러 (0) | 2020.06.12 |
path - python, pathlib (0) | 2020.06.11 |
댓글