SOLVED
How do I split out variable length String field into individual characters?
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
jack004
7 - Meteor
‎12-18-2018
01:36 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Hi all,
Am trying to split out variable length string fields into the individual characters, for example:
Santa |
Rudolph |
The Grinch |
to become:
S | a | n | t | a | |||||
R | u | d | o | l | p | h | |||
T | h | e | G | r | i | n | c | h |
Feel like there's got to be an answer using RegEx...but can't seem to find a way
Thanks in advance!
Solved! Go to Solution.
Labels:
- Labels:
- Regex
2 REPLIES 2
LordNeilLord
15 - Aurora
‎12-18-2018
01:42 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Hey @jack004
Using the regex tool in tokenize mode with the regular expression . will split every character
‎12-18-2018
02:26 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Awesome, worked a treat. Thanks!
