I'm trying to extract all jpeg file names from an html file.
ex.
<html>
<body>
<img src='picture.jpg'>
</body>
</html>
The file is much much larger, but I wanted to show you an example of what I meant. I need a script that will extract those jpg file names and store them into an array.
How do I do this without writing a hundred lines of code?
Thanks.
Rubric