I want to match content inside every font tag with a color:
inside html <font color="#000000">this should be matched</font><font color="#777777">this shouldn't be</font><font color="#000000">this should be matched too</font> inside html
But when I use the following regex:
<font color=\"#000000\">(.*)<\/font>
It will match the whole string starting with first font tag, including the one that has #77777 color. Can someone please tell me what am I doing wrong?
Thanks