Hi,
I have a string like this:
This <span class="highlight">is</span> a very "nice" day!
How should my RegEx-pattern in VB look like, to find the quotes within the tag? I want to replace it with something...
This <span class=^highlight^>is</span> a very "nice" day!
Something like <(")[^>]+> doesn't work :(
Thanks