-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path4_re.py
36 lines (28 loc) · 1.29 KB
/
4_re.py
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
32
33
34
35
36
import re
# 정규식
p = re.compile("ca.e")
# . : 하나의 문자 : ex) ca.e : cafe, case, care ...
# ^ : 문자열의 시작 : ex) ^de : desk, destination ...
# $ : 문자열의 끝 : ex) se$ : case, base ...
def print_match(m):
if m:
print("m.group():", m.group()) # 일치하는 문자열 반환
print("m.string:", m.string) # 입력받은 문자열
print("m.start():", m.start()) # 일치하는 문자열의 시작 index
print("m.end():", m.end()) # 일치하는 문자열의 끝 index
print("m.span():", m.span()) # 일치하는 문자열의 시작과 끝 index
else:
print("노매칭")
# m = p.match("good care") # match : 주어진 문자열의 처음부터 일치하는지 확인
# print_match(m)
# m = p.search("good care") # search : 주어진 문자열 중 일치하는지 확인
# print_match(m)
# lst = p.findall("careless cafe") # findall : 일치하는 모든 것을 리스트 형태로 반환
# print(lst)
# 정규식 re 사용 순서 총정리
# 1. p = re.compile("원하는 형태")
# 2. m = p.match("비교할 문자열") 등
# 원하는 형태 : 정규식
# . : 하나의 문자 : ex) ca.e : cafe, case, care ...
# ^ : 문자열의 시작 : ex) ^de : desk, destination ...
# $ : 문자열의 끝 : ex) se$ : case, base ...