I have a string opposed to unit sales @d. Moving rev @i. Before used to down @test.
I need to extract all of the text with @ tags before the period including the @.
The results should be: @d @i @test
I can match everything using @([^\.]*)
but I read that since google sheet doesn't do multiple extract, i need to replace everything except my pattern with " "
then split to get the results.
I'm having problems producing a formula that uses regexreplace
for everything except my pattern.