Let's say I wanted to remove vowels from HTML:
<a href="foo">Hello there!</a>Hi!
becomes
<a href="foo">Hll thr!</a>H!
I figure this is a job for Beautiful Soup. How can I select the text in between tags and operate on it like this?
|
2
|
Let's say I wanted to remove vowels from HTML:
becomes
I figure this is a job for Beautiful Soup. How can I select the text in between tags and operate on it like this?
|
|||
|
|
|
|
Suppose the variable
Just do this:
That prints:
Note that the tags and attributes are untouched. |
||
|
|