Python使用正则表达式处理源码记录
程序员文章站
2022-07-09 23:53:28
...
记录一下操作步骤,懒得翻代码,复制使用。
1.获取字符串中收个数字的开始结束位置。
例如:asd2312ssa213sda
反馈 :2312
import re
content =content.replace(" ","")
model = re.compile("[0-9]+")
if model.search(content) is not None:
pos = model.search(content).span()
return int(content[pos[0]:pos[1]])
上一篇: MySQL存储引擎
下一篇: Mysql5.1存储引擎比较