I have a simple Regexp with the following code :
<img[^>]+src="([^">]+)"
This regexp allows me to get the src of each img of my document. What I am trying to do without any success, is to add a class condition to it, something that will find all the src of my images which have a certain class. I tried something like that :
<img[^>]+src="([^">]+)" *class="name_of_my_class"
but this only works if the class is inserted after the src, and i need the regexp to work in reverse sens to.
Thanks for any helps !