I have this example :
<button type="sasasasasa" abcd="dsqdsq" efgh="sasasa">
I only want to match "button"
"type"
"abcd"
and "efgh"
.
I already tried : [a-zA-Z:_][a-zA-Z:_.*]*
but it matches also what's inside the quotes ""
I thought about taking either "="
or "<"
or " "
at the beginning to only match but I don't want to have such caracters in my results.