I have a very long string were I would like to match path of an image. for example
abc <img src="static/img/about-me.png" title="" alt="". My objective is get string static/img/about-me.png
I have a Pattern @"(?i)(src=)([a-z0-9\\/_-])+\.(png|jpg)"
which should work fine, but it is failing because I need to add single " after src=. I tried many approaches, but unable to resolve it. Any help will be appreciated.