I m trying regex to get the strings
starting with @ and
not ending with a dot(.)
For that i tried the java code(link here) but this does not show any results -
@(\\w+)*(?<!.(.))*$
The string i m trying is -
This is a test\nAnother @pradyut@test ht@html.com\ntest\n#art\n@cool#paintings#collections
This should return
pradyut
test
cool
The result html ending with a .com should not return.
Regards