0

我想检查一个字符串(一条推文)是否以“#”(即主题标签)开头,如果是,则创建一个链接。

以下是我迄今为止尝试过的,但它不起作用(最后一行有错误)。我该如何解决这个问题,代码是否能达到目的?

tag_regex = re.compile(r"""
       [\b#\w\w+]        # hashtag found!""", re.VERBOSE)

message = raw_message

for tag in tag_regex.findall(raw_message):
    message = message.replace(url, '<a href="http://statigr.am/tag/' + message[1:] + '/">' + message + '</a>')
4

1 回答 1

3
>>> msg = '#my_tag the rest of my tweet'
>>> re.sub('^#(\w+) (.*)', r'<a href="http://statigr.am/tag/\1">\2</a>', msg)
'<a href="http://statigr.am/tag/my_tag">the rest of my tweet</a>'
>>> 
于 2013-08-28T10:16:03.070 回答