I'm trying to get a list of all inline event tags from an HTML <body> string, how would I be able to do this?
Example:
<a onclick='foo()'></a>
I'd want to extract onclick='foo()'.
Is it possible with REGEX or any other alternatives?
|
I'm trying to get a list of all inline event tags from an HTML Example:
I'd want to extract Is it possible with REGEX or any other alternatives? |
||||
|
Here's one. The event-thing will be group 1:
|
|||
|
You should let the browser do the parsing, for example like this:
Then get the
|
|||||
|
onXXXXXattribute... – Felix Kling Oct 16 '11 at 8:21