I'm trying to find all values with following pattern :
value="4"
value="403"
value="200"
value="201"
value="116"
value="15"
and replace it with value inside scopes.
I'm using the following regex to find the pattern :
.*"\d+"
How can I do a replacement?