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]*)"/>