Hi all.
I am trying to take this string: 13374147000193 and edit to became like this: 13.374.147/0001-59
Solved! Go to Solution.
Hey @Joker_Hazard
First, you will need to use the formula tool to add leading zeroes in the field.
Formula:-
PadLeft(tostring([Field1]),14,"0")
Then use the regex tool in Replace mode.
Regex expression:-
(^\d{2})(\d{3})(\d{3})(\d{4})(\d{2})
Replace Expression:-
$1.$2.$3/$4-$5
Hope I have answered your question.