Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- 정규식 문자열 출력
- 정규식 컴파일
- 정규식 활용
- linux시간으로 변경
- grafana dashboard
- 1697
- c3 축 없애기
- c3 초
- semanage
- g++ 업데이트
- python os
- python subprocess
- regex_search
- InfluxDB
- subporcess path
- snmp
- c++ 정규식
- gcc 업데이트
- telegraf
- gcc regex
- c3 축 가리기
- 백준
- c3 step graph
- selinux port 등록
- python popen
- snmp test
- CentOS7
- c3 second
- influxdb 설치
- centos pyhon 설치
Archives
- Today
- Total
리셋 되지 말자
python에서 re (regex) 사용 - 단어 추출 본문
정규식에서 \w 는 단어 문자를 뜻하며, ^는 not을 뜻한다.
word for word in re.sub('[^\w]', ' ', paragraph)
위 정규식은, 단어가 아닌 모든 문자를 공백으로 치환한다
참고 : https://dojang.io/mod/page/view.php?id=2438
참고: https://leetcode.com/problems/most-common-word/submissions/
'Python' 카테고리의 다른 글
[python 공부] 소수 반올림, 올림, 버림 (0) | 2021.07.03 |
---|---|
정렬 (0) | 2021.06.13 |
람다 표현식 (0) | 2021.06.13 |
list 뒤짚기 - reverse() (0) | 2021.06.13 |
[python 문법] dict (0) | 2021.06.08 |
Comments