两年内要成大神
2020-02-02 17:01
str1 = 'imooc videonum = 1000'
info = re.search(r'\d+','str1')
In [137]: info.group()
Out[137]: '1'
为什么我的不行呢?
因为re.search函数里‘str1’表示的是字符串str1,而不是你上面定义的字符串变量str1,改为re.search(r'\d+',str1)就可以了。
python正则表达式
80575 学习 · 174 问题
相似问题