I want to extract part of a filename that is contained in a xml string
Sample
<assets>
<media width="100%" height="100%" img="/assets/560PEgnR/kVvNKfOX7w9tf7.JPG" valign="top"/>
<media width="100%" height="100%" img="/assets/560PEgnR/kVvNKfOX7w9tf5.JPG" valign="top"/>
<media width="100%" height="100%" img="/assets/560PEgnR/kVvNKfOX7w9tf4.JPG" valign="top"/>
</assets>
I want to match and retrieve the 560PEgnR portion from all entries, regardless of the filename
So far I have
/assets/(.*)/*"
But it doesn't do what I want
Any help appreciated
Thanks