I have the following sequence:
3531399402
It has 10 numbers, with this regex I can list these occurrences:
^\d{10}$
I'm using a text editor and I need to give a replace on those instances and insert a 0 before getting like this:
03531399402
How can I do it?