i have a table like
[A]-----------[B]
[0]-----------[0.012345]
[1]-----------[0.002345]
[0.2145]----[0.1457]
I need both columns A and B to be padded with zeros at the end upto 9th place after decimal so the output should look like:
[A]--------------------[B]
[0.000000000]-----------[0.012345000]
[1.000000000]-----------[0.002345670]
[0.214500000]-----------[0.145700000]
NOte: total number of digits = 10 not including '.'decimal