I have to parse this HTML:
<p>
<strong>abc:</strong>
asfkjsdg
</p>
$para
contains the value of the element <p>
. I am using HTML::TreeBuilder.
$para->as_text
gives me
abc:asfkjsdg
How can I get only:
asfkjsdg
I have to parse this HTML:
<p>
<strong>abc:</strong>
asfkjsdg
</p>
$para
contains the value of the element <p>
. I am using HTML::TreeBuilder.
$para->as_text
gives me
abc:asfkjsdg
How can I get only:
asfkjsdg