I am a little stuck with a string parsing workflow. I am trying to parse a string from right to left in groups of 10. The Regex tool seems to work fine but I can only get it to work when I parse from left to right. The strings are not all the same length and they may not be divisable by 10.
Essentially if we were parsing the alphabet I would like the get:
ABCDEF
GHIJKLMNOP
QRSTUVWXYZ
Is there a way in Alteryx to easily accomplish this?
Solved! Go to Solution.
If you are good with left to right, then you can REVERSESTRING([FieldName]) and then when you are done, reverse it back.
Cannot believe I overlooked that, works perfect, thank you.