I have a text in cell (A1) like this: āšš š āļøšššŖš§š§
I want to extract the unique emojis from this cell into separate cells: āšš āļøšššŖš§
Is this possible?
āšš
š
āļøšššŖš§š§
to each cell by splitting using the built-in function of Google Spreadsheet.=SPLIT(REGEXREPLACE(A1,"(.)","$1@"),"@")
āšš
š
āļøšššŖš§š§
is put in a cell "A1".REGEXREPLACE
, @
is put to between each character like ā@š@š
@š
@ā@ļø@š@š@šŖ@š§@š§@
.SPLIT
, the value is splitted with @
.ļø
which cannot be displayed is included. It's \ufe0f
. So "G1" can be seen like no value. But the value is existing. So please be careful this. If you want to remove the value, you can use āšš
š
āšššŖš§š§
.From marikamitsos's comment, I could notice that my understanding was not correct. So the final result is as follows. This is from marikamitsos.
=TRANSPOSE(UNIQUE(TRANSPOSE(SPLIT(REGEXREPLACE(A1,"(.)","$1@"),"@"))))