I was wondering myself if I want to get all classes names in a html file, what regex
can I use? I don't understand the way I can mount it. I have this code:
HTML
<html>
<div class="myFirstClass"></div>
<div class="mySecondClass2"></div>
</html>
I want to know how to get:
myFirstClass
mySendCLass2
using regex... I tried to use class=".*"
but it gets everything ever outside of the name.