Hi there I’m analyzing some Twitter data and usually use regexp to transform text.
For example I use this to delete all words in a column except hashtags.
value.replace(/(?<!\S)[^#]\S*/, “”)
Could someone suggest me a similar one for deleting all text except emojis?
Thanks a lot