I need to match a single word (blah) inside the inner most quotes. Example:
<link rel="stylesheet" type="text/css" href="/BLAH/Test/Test/Test.css"> <script src="/blah/Test/Test/Test.js"></script>
So I need it to return:
"/BLAH/Test/Test/Test.css"
"/blah/Test/Test/Test.js"
When I try to write something, it grabs the first and last double quote rather than seeing two instances of the word blah.
Any help would be appreciated but more than that please explain so I can learn!