SearchPattern = (?<price1>[0-9]+)(?<price2>[9]?)+(.)(?<price3>[9]{2})
zero or more matches of 0-9 numbers followed by one or more 9 followed by 2 optional digits after the dot.
I did not understand, what does price1, price2, price3 means? can someone help me here.
ReplacementPattern = (?<price1>[0-9]+)(?<price2>[0-9]{1})+(.)(?<price3>[0-9]{2})
Replacement String = ${price1}9