I had a requirement where in my file I had to replace all 2-digitno occurrences to corresponding 3-digitno.
For example:
48should be replaced by048.02should be replaces by002.
Till now I am able to identify 2 digit nos in my document with expression:
^[0-9]{2}$
But I am not able to figure out how to append 0 to no. Kindly help me in writing regular expression for this.
