I have some cells with strings where some text is divided by a symbol.
I'd like to extract substrings by a delimiter, trim eventual blank spaces, add the hashtag char before each string and then add a space between them.
So from this:
text1, text2, text3, text4
to
#text1 #text2 #text3 #text4
.
How do I do that? Thanks.