I'm trying to use regular expression in to match the following in a text file where the orlst
part in the string may be any character a-Z:
<frame src="orlst.html" name="list">
So far I've only been able to use a pattern of (<frame src=)
to return any results. But it only returns <frame src=
in the matches collection.
Any ideas how I could add to my pattern to return what I'm looking for?