我正在编写一段代码来将电话号码转换为手机的链接——我知道了,但感觉真的很脏。
import re
from string import digits
PHONE_RE = re.compile('([(]{0,1}[2-9]\d{2}[)]{0,1}[-_. ]{0,1}[2-9]\d{2}[-_. ]{0,1}\d{4})')
def numbers2links(s):
result = ""
last_match_index = 0
for match in PHONE_RE.finditer(s):
raw_number = match.group()
number = ''.join(d for d in raw_number if d in digits)
call = '<a href="tel:%s">%s</a>' % (number, raw_number)
result += s[last_match_index:match.start()] + call
last_match_index = match.end()
result += s[last_match_index:]
return result
>>> numbers2links("Ghost Busters at (555) 423-2368! How about this one: 555 456 7890! 555-456-7893 is where its at.")
'Ghost Busters at <a href="tel:5554232368">(555) 423-2368</a>! How about this one: <a href="tel:5554567890">555 456 7890</a>! <a href="tel:5554567893">555-456-7893</a> is where its at.'
无论如何我可以重组正则表达式或我用来使这个更清洁的正则表达式方法吗?
更新
澄清一下,我的问题不在于我的正则表达式的正确性——我意识到它是有限的。相反,我想知道是否有人对在链接中替换电话号码的方法有任何评论 - 无论如何我可以使用re.replace
或类似的东西来代替我拥有的字符串黑客?