字符串中根据类型查找某一类型元素
如题:怎样在字符串中根据类型查找某一类型的元素例如:
输入: 5 points
怎样找到‘5’的位置并输出‘5’ 可以用正则表达式,十分方便>>> import re
>>> a = re.search('\d', ' 5 points')
>>> a.span()
(4, 5)
>>> a.group()
'5'
Python3 如何优雅地使用正则表达式(详解一)
https://fishc.com.cn/thread-57073-1-1.html
(出处: 鱼C论坛)
页:
[1]