파이썬 match 정규식 적용
마스터욱
0
28
0
0
2018-03-12 15:19:20
output = re.match(r'(?s).*List BBS Block Start(.*)List BBS Block End.*', outhtml, re.M|re.I)
출력코드 : print(output.group(1))
시작값 : List BBS Block Start
종료값 : List BBS Block End
사이의 값을 가져올 수 있다.
(?s) 이게 왜 있어야 하는지 모르겠다...