我有以下示例推文:
RT @user1: who are @thing and @user2?
我只想拥有user1、thing和user2。
我可以使用什么正则表达式来提取这三个名称?
PS:用户名只能包含字母、数字和下划线。
测试:
/@([a-z0-9_]+)/i
在红宝石(irb)中:
>> "RT @user1: who are @thing and @user2?".scan(/@([a-z0-9_]+)/i)
=> [["user1"], ["thing"], ["user2"]]
在 Python 中:
>>> import re
>>> re.findall("@([a-z0-9_]+)", "RT @user1: who are @thing and @user2?", re.I)
['user1', 'thing', 'user2']
在 PHP 中:
<?PHP
$matches = array();
preg_match_all(
"/@([a-z0-9_]+)/i",
"RT @user1: who are @thing and @user2?",
$matches);
print_r($matches[1]);
?>
Array
(
[0] => user1
[1] => thing
[2] => user2
)
尝试使用此正则表达式的迭代器(findall):
(@[\w-]+)
再见
/(?<!\w)@(\w+)/
以上涵盖了以下场景,该线程中的其他答案没有:
在您的项目中包含 twitter 文本库 [1] 以解决此文本问题是一个好主意。
twttr.txt.extractMentions("a very generic twitt with some @mention");
应该这样做(为方便起见,我使用了命名捕获):
.+?@(?[a-zA-Z0-9_]+):[^@]+?@(?[^\s]+)[^@]+?@(?[a-zA-Z0- 9_]+)