Hi,
I'm wondering if it's possible to use RegExp to "parse" html.
Here's what I want to do:
For example, i have the following text :
"
<div>
Blabla
<div>
<div>
Blabla
</div>
</div>
Blabla
</div>
"
I'm wondering if it's possible to get what's inside the higher div with a regexp.
Something that would return :
"
Blabla
<div>
<div>
Blabla
</div>
</div>
Blabla
"
I wrote a functi