3

I have a big price list where i have to replace all prices by 0. The price list is build by this style .

<Cost dollar="155"/>
<Cost dollar="240"/>

And i want to replace the numbers by 0 .

My attempt:

<Cost dollar="([0-9])"/>

EDIT :

solved by

<Cost dollar="([0-9]*)"/>

1 Answers1

2

Find: \d*

Replace: 0

Or use what you already did with the asterisk [0-9]*

Peter Foti
  • 5,526
  • 6
  • 34
  • 47