I have the following regex: <img([^>]*)[^/]>
It captures images tags like this: <img src="#" > that is without />
The problem is if the image tag is as follows <img src="#"> that means there is no space between " and > it doesn't include the last single quote after # it captures like this
src="#
Any way to include the last quote even though there is a tag or not after "
Thanks
Jagar,