Hello,
I have a situation where in the data have to be extracted from inside a square bracket []. The column doesn't have any pattern. These are some of the values in the column :
abc [xyz-123] nsk
[ahd-246]
uteh[iwyt-798]
[kudgb-3645] jvsux [oikjh-35945] ahfvd [kdytd-2384]
As from the examples above, it doesn't follow any pattern. I just need to extract all the data inside the bracket.
I tried using the expression ".*\[(.*)\].*" (excluding ")
It works for most cases but if the cell contains more than 1 bracket pair, it only picks up one data.
Looking for a solution where in i can extract every data inside any number of square bracket.
Thanks in advance