re.S、 re.M

원본 링크:http://www.cnblogs.com/xishaonian/p/8290572.html
re. S 는 대표 입 니 다. 일치 할 수 있 고 " re. M 은 여러 줄 이에 요.
 
code
import re
a = '''asdfsafhellopass:
    234455
    worldafdsf
    '''
b = re.findall('hello(.*?)world',a)
c = re.findall('hello(.*?)world',a,re.S | re.M)
print 'b is ' , b
print 'c is ' , c

 
결과 인쇄
b is []c is ['pass: 234455" aaa aawaw ']
다음으로 전송:https://www.cnblogs.com/xishaonian/p/8290572.html

좋은 웹페이지 즐겨찾기