Hivemind!
I am trying to edit Memsource *.mxliff files with Notepad++.
When I create a search task, both source and target lines mix up in a huge list.
But I need to make amendments only for lines inside <target>.../<target> tags.
For example:
1. <target>от 15 до 35 °C</target>
2. <target>Допустимый диапазон температур воздуха от -40 °C до +70 °C {1>1)<1}</target>
Inside these lines I need to replace all instances of degrees with a non-breaking space version:
Find: (\d) °C
Replace with: $1 $2
What is the most optimal way to do so?
Any hints would be much appreciated. Thanks a lot!


(\d)\s*(°C)->\1 \2