Hi.
I have a line of text, for example
"Hello @Olga, how are you?
I need to get from this string what comes after the @ symbol, i.e. Olga.
How can I do it? I understand that I need to use regex expression here? How do I make it up right?
Iām not an expert, but if you put this in the extract with regex a ā
\@\w+
it will result in a list of text with the @olga, @name, etc
then if you want to eliminate the @ you can take it off in the :Find&replace (find @, replace by empty, not regex, normal find and replace)
If you want to avoid the find and replace you could try:
(?<=@)\w+
you can test your expressions here:
2 Likes
It works! Thank you very much!
This topic was automatically closed after 70 days. New replies are no longer allowed.