I hear perl is the way to go for string parsing, so here is the test!
I have a file like this:
...
<li><a href="DSC_9866.JPG"> DSC_9866.JPG</a></li>
<li><a href="DSC_9867.JPG"> DSC_9867.JPG</a></li>
...
and I want to get a list of the file names. That is, the result I want is a list of strings
DSC_9866.JPG, DSC_9867.JPG, etc
How would I go about this?
Thanks,
Dave