I'm trying to do a simple search and replace with some unkowns.
So I got strings like this:
- <property name="Map ID" type="int" value="103"/>
- <property name="Map ID" type="int" value="2"/>
- etc.
Notice that last value is always changing.
Now I want to do an operation that changes that last value. Is there some text expression I can use here to find the value in the string and replace it with something else?
I tried looking into "wildcards", but no luck.