This topic created in 4205 days ago, the information mentioned may be changed or developed.
例如 re.compile(expression,re.S)
如果我需要同时使用I 和 s 两种模式 要怎么写
看了不少文章都是写了1种模式
2 replies • 2014-11-01 12:52:50 +08:00
 |
|
1
yangg Nov 1, 2014 2
re.compile(expression, re.S | re.I)
|