我的目标是使用正则表达式代码来获取电话号码并删除不需要的字符。
import re
strs = 'dsds +48 124 cat cat cat245 81243!!'
match = re.search(r'.[ 0-9\+\-\.\_]+', strs)
if match:
print 'found', match.group() ## 'found word:cat'
else:
print 'did not find'
它只返回:
+48 124
我怎样才能返回整个号码?