I have a csv file with delimiter as two pipes and a forward slash ||/
I know I can use Regex but can figure out the correct syntax.
Any recommendations? Thanks!
Solved! Go to Solution.
Thanks @afv2688
Your workflow returns what I need, and the mockup data you came up with match exactly the data I have. Thank you so much! 👍
BTW, I read a post before talking about using a RegEx Tokenize function to parse the data. In that case the csv file delimiter was <|>
I tried to use the RegEx for ||/ as well, but just not working.
I am attaching the workflow from the other post.
For multiple character delimiters, I recommend using a replace to change it to a single delimiter. This makes it much easier for parsing!
In your case, I might use a formula with the following. You can then parse on a singe instance of | or another character of your choosing:
replace([fieldname], "||/", "|").