Hi. I have been working on this problem for a while now. I am trying to get this regular expression to match images like this:
<img src=image.jpg border=5>
But it doesn't seem to be working.
Here is what I have:
/(?:|\s)(src)\s=\s([\"]*)\s/i
It matches the src but not the space to end the expression. 😕
Thanks in advance.