I have a xml text file opened in VS2005 IDE.
It has 4 mocked up lines:
<mc id="dog" name="mydogBob"/>
<mc id="cat" name="katie"/>
<mc id="turtle" name="slow"/>
<mc id="fish" name="happy"/>
How do I use VS2005 Find/Replace function with regular expression to replace words and make the final result like:
dog
cat
turtle
fish
Thank you so much
-Simon