I am currently parsing an html page to extract some information:
Sometimes there is not text after a closing tag such as in the case of Ethos in the HTML document below
<span id= "here" style>
<br>
<b> Post Primary</b>
<b>school<b>
<br>
<b>Roll number: </b>
"60000"
<br>
<b>Principal</b>
"Paul Ince"
<br>
<b>Enrolment:</b>
"Boys; 193 Girls: 190 (2012/13)"
<br>
<b>Ethos:</b>
<b>Catchment:</b>
"North Inner CIty "
<br>
<b>Fees:</b>
" No "
</span>
I would like to extract the following information
Enrolment= "Boys:193 Girls: 190 (2012/13)"
Ethos= ""
Fees="No"