vote up 0 vote down star
1

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

flag

1 Answer

vote up 5 vote down

Find What:

^.*id="{.*}" .*$

Replace With:

\1

In Find options check Use and select Regular Expressions from the dropdown.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.