I've searched through the group and can not find what I'm looking for.
Here's my issue.
We are using Beautifulsoup to parse emails, I get a field with the value
<td class="s2">Portland (2010)<br /> <span style="color:#999999;">Available
to Ship: NOW</span></td>
I need to remove the "<span style="color:#999999;">Available to Ship:
NOW</span></td>" part...
I've used .split('Available')[0], but this is not how the powers that be
here would like it done since the text in that field can vary.
Is there a way to search the text string and remove the span tag all
together?
Thanks in advance for any suggestions and assistance.
Osyrys