I have a text and I need to change every number like NN.NN to NN.NN00. Ex. 23.43 to 23.4300 How can I do that using word

link|improve this question
feedback

1 Answer

([0-9]{2}.[0-9]{2})\100

  • [0-9] – any number
  • {2} – two matches in a row
  • ( and ) – create a group
  • \1 – insert the 1st group
  • 00 – insert two zeros

For more information, see Word wildcard reference.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.