Reg Ex wildcard help please
I have many, many strings of html code in Dreamweaver, scattered all through the document, such as:
<a href="file:///C:/Users/User/AppData/Article-final-draftdocx#_edn4" name="_ednref4">[4]</a>
<a href="file:///C:/Users/User/AppData/Article-final-draftdocx#_edn5" name="_ednref5">[5]</a>
<a href="file:///C:/Users/User/AppData/Article-final-draftdocx#_edn6" name="_ednref6">[6]</a>
<a href="file:///C:/Users/User/AppData/Article-final-draftdocx#_edn7" name="_ednref7">[7]</a>
My first step is simply to find all occurrences of lines that match that pattern. I'm trying to use wildcards to construct this search:
Find each occurrence of a string that BEGINS with <a href="file:///C:/Users and ENDS with ]</a>
So if it finds:
<a href="file:///C:/Users/User/AppData/Article-final-draftdocx#_edn4" name="_ednref4">[4]</a>
Then I can click FIND NEXT and it will then find
<a href="file:///C:/Users/User/AppData/Article-final-draftdocx#_edn5" name="_ednref5">[5]</a>
etc etc
I'm stuck with my syntax, and would appreciate any advice.

