python 換行匹配
- 2019 年 10 月 7 日
- 筆記
re.compile() 函數接受一個標誌參數叫 re.DOTALL ,在這裡非常有用。 它可以讓正則表達式中的點(.)匹配包括換行符在內的任意字符。比如:
comment = re.compile(r'/*(.*?)*/', re.DOTALL) comment.findall(text2) [' this is an multiline comment ']
comment = re.compile(r'/*(.*?)*/', re.DOTALL) comment.findall(text2) [' this is an multiline comment ']