junxnone / xwiki

https://junxnone.github.io/xwiki/
0 stars 0 forks source link

Programing Python re #207

Open junxnone opened 5 years ago

junxnone commented 5 years ago

re 正则表达式模块

Examples

import re
pattern = re.compile('[0-9]+')
match = pattern.findall(str)

Reference

junxnone commented 4 years ago

junxnone/xwiki#206