Hi guys
I have a string (read from a text file), and i need to be able to pull out the value in the quotation marks. For example:
if my string is <img src="hello.jpg">
, I need to return hello.jpg.
The tough part is that there can by any number of spaces (including 0) in between img and src, between src and = , and between = and the first quotation mark.
Do I need to use wildcards?
That was hard to describe... hope someone understood my problem.
Thanks!