I have a long string of values that is merged together. I need to insert a delimiter after every 6th character; there is no other consistency in the values (i.e. case, what the character is). I am trying to use the RegEx tool but can't figure out how to specify to insert the delimeter in this position.
Example:
String looks like this - ab111cde222fgh333i
Needs to come out like this: ab111c;de222f;gh333i so that I can then separate them into individual columns (ab111c would go in one column, de222f would go in a second, etc.).
Thanks in advance!