我正在尝试正则表达式来获取字符串
从 @ 和
不以点(。)
为此,我尝试了java代码(link here),但这没有显示任何结果 -
@(\\w+)*(?<!.(.))*$
我正在尝试的字符串是 -
This is a test\nAnother @pradyut@test ht@html.com\ntest\n#art\n@cool#paintings#collections
这应该返回
pradyut
test
cool
以.com结尾的结果html不应该返回。
此致