電話番号を携帯電話のリンクに変換するコードを作成しています。
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
、私が持っている文字列ハッカーの代わりに使用できるものはありますか?