Hi all, i have this code to extract all words beginning with an "@" character, it works perfectly fine:
push @text,map(/(?<!\w)@\w+/g, @words);
but, i need to avoid adding replicas of the same word. my space is very limited and i was wondering if it was possible to do this in a 1 liner, extract...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.