I'm trying to change value of element in my tables. I have tousands of this. The code is
<td>350,19</td>
and i need to change it to
<td>350,19 €</td>
Problem is that i don't know how to replace it with notepad++. The find selection works with
\d{0,3}+\,\d{2}
but replace doesnt work. When i put
\1 € or $1 €
it puts only
€ in <td></td>
How can i add euro sign to that code.