Hi,
In a field I have the text:
charlie,groves[CG],emilia,banks[EB]
I want to return two rows:
charlie,groves[CG]
emilia,banks[EB]
How would I do this? As the delimiter comma is frequent
You can use comma and $ as regex delimiters to split string.
INPUT | OUTPUT | |
Txt | Txt | |
charlie,groves[CG],emilia,banks[EB] | charlie,groves[CG] | |
ABC.123[ABC],EFG.456[EFG],opq[123] | emilia,banks[EB] | |
ABC.123[ABC] | ||
EFG.456[EFG] | ||
opq[123] |
User | Count |
---|---|
107 | |
82 | |
72 | |
54 | |
40 |