python re.compile

编制一个正则表达式的模版
然后模版可以用match()和search()方法来匹配

prog = re.compile(pattern)
result = prog.match(string)

这种方法等价于result = re.match(pattern,string)

如果这个模版反复用的话是有价值的,
我建议还是用re.search()把pattern作为单独的字符串
另外pattern里建议用(?P[\u4e00-\u9fa5]{2,5})定位

另外,ur"abcd",ur的表示方法在python3(用u替代了)中不在使用,
同时也说明初代的jieba是基于python2的

你可能感兴趣的:(python re.compile)