I have a code like this.
<td class="check ABCD" rowspan="2"><center><div class="checkbox {{#if checked}}select{{else}}deselect{{/if}}" id="{{id}}" {{data "tool"}
<td class="check" rowspan="2"><center><div class="checkbox {{#if checked}}select{{else}}deselect{{/if}}" id="{{id}}" {{data "tool"}}>
And I want to extract only the class and ID name in the above code. I have very little knowledge about using regular expression in python.
How can I extract only the class name & id name(the ones in between "") using regular expression? or is there any better way to do this?. If yes, please help me finding it :)
Thanks in advance.