how to use regex

1
2
3
4
5
6
7
8
#匹配出所有的codecept_debug代码,包括已经注释掉的
(//)?codecept_debug\(.*\)(;)?
# 匹配单行sql
^select (.)*;$
# 阻止贪婪
^select \* (.|\n)*?;$
# 匹配单行换行
^\n$