Home > Backend Development > Python Tutorial > python通过正则查找微博@(at)用户的方法

python通过正则查找微博@(at)用户的方法

WBOY
Release: 2016-06-10 15:17:22
Original
1004 people have browsed it

本文实例讲述了python通过正则查找微博@(at)用户的方法。分享给大家供大家参考。具体如下:

这段代码用到了python正则的findall方法,查找所有被@的用户,使用数组形式返回用户昵称

import re
users = re.findall(r'@([\u4e00-\u9fa5\w\-]+)','nihao @dfugo @jb51 haha')
print(users)
Copy after login

返回结果如下:

['dfugo', 'jb51']
Copy after login

希望本文所述对大家的Python程序设计有所帮助。

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template