E
Earl Teigrob
I am parsing HTML and have source text like this
<A,A>
that I would like to retreive all of the "A"s from using an expression like
<[^>]*?(?<content>A)[^>]*?>
Even though this will technically match both A's, it only returns the first
one. How can I return both "A"s
Thanks
Earl
<A,A>
that I would like to retreive all of the "A"s from using an expression like
<[^>]*?(?<content>A)[^>]*?>
Even though this will technically match both A's, it only returns the first
one. How can I return both "A"s
Thanks
Earl