Hey,
I am kinda stuck at a program im developing.
I am trying to get 2 pieces of data out of html code.
Code:
<h4><span class="fn n"><span class="given-name">Debbie</span> <span class="additional-name">T.</span> <span class="family-name">Coachman</span></span></h4>
Ok this is what i have
I want to cut out: Debbie
And Couchman
What i thought was
Search for this :
Code:
<span class="given-name">
Start the selection and stop when it hits :
Same goes for Coachman
From:
Code:
<span class="family-name">
To
I dont really know how to do this..
Hope some of you guys can help me with this