Hi all.
I am trying to take this string: 13374147000193 and edit to became like this: 13.374.147/0001-59
The one issue I encountered is that sometimes some strings come with less than 14 caracthers, so it needs to add zeros to the right side for example:
135576000142 -> needs to become: 00.135.576/0001-42
Would regex be the best option here?
Thanks