我是靠谱客的博主 坚强春天,最近开发中收集的这篇文章主要介绍从字符串内提取电话号码,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

直接上代码,有问题可以留言

def isPhoneNumber(text):
if len(text) != 12:
return False
for i in range(0, 3):
if not text[i].isdecimal():
return False
if text[3] != '-':
return False
for i in range(4, 7):
if not text[i].isdecimal():
return False
if text[7] != '-':
return False
for i in range(8, 12):
if not text[i].isdecimal():
return False
return True

 

message = 'Call me at 415-555-1011 tomorrow. 415-555-9999 is my office.'

 

for i in range(len(message)):
chunk = message[i:i + 12]
if isPhoneNumber(chunk):
print(chunk)
print('DONE')

出来的效果:

如果以上方法感觉比较麻烦,我们也可以使用正则来实现。

 phoneNumRegex = re.compile(r'ddd-ddd-dddd')
mo = phoneNumRegex.search('My number is 415-555-4242.')
print('Phone number found: ' + mo.group())

这个效果大家自己试吧
 

最后

以上就是坚强春天为你收集整理的从字符串内提取电话号码的全部内容,希望文章能够帮你解决从字符串内提取电话号码所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(58)

评论列表共有 0 条评论

立即
投稿
返回
顶部