Hi,
how can i parse or text to columns this dataset so i can extract numbers ie "1" and Alphanumeric ie "2b" out of this?
Thanks.
@wonka1234
If by extract you mean keep just the rest of the text:
Hi @wonka1234
Try
regex_replace([Data], '^(.*?)\s{2,}.*', '$1')