I have a data set in the following pattern
1<a href="/contact/">Joe</a><br />[email protected]</div>
2<a href="/contact/">Tom</a><br />[email protected]</div>
3<a href="/contact/">Jerry</a><br />[email protected]</div>
So on...
I need to extract the name and email id alone from it. How do I do it?
Update:
Based on your responses, I've changed my data format to:
1(name)Joe(email)[email protected](end)
2(name)Tom(email)[email protected](end)
3(name)Jerry(email)[email protected](end)
How do I parse that?