I have a BeautifulSoup of this format
<div class='text'>
<h3> text </h3>
<p> some more text </p>
"text here <b> is </b> important"
</div>
How do I extract just the string "text here is important" leaving out the h3, and p elements but the bold tag text remains inside the output
Thanks a ton