Splitting to Rows
Options
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Mute
- Printer Friendly Page
nickmarlboroughGS
5 - Atom
‎07-20-2023
12:54 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
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
Labels:
- Labels:
- Parse
- Text Mining
4 REPLIES 4
ShankerV
17 - Castor
‎07-20-2023
01:02 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
ShankerV
17 - Castor
‎07-20-2023
01:04 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
flying008
15 - Aurora
‎07-20-2023
04:57 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
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] |
Ranga116
6 - Meteoroid
‎07-21-2023
09:15 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Hi, @nickmarlboroughGS by replacing one comma that we want to split at with any letter/character bybusing formula tool and then splitting by using that perticular character/letter using text to column tool.
