Skip to content
Advertisement

Replacing tags of one kind with tags of another in BeautifulSoup

I have a collection of HTML files. I wish to iterate over them, one by one, editing the mark-up of a particular class. The code I wish to edit is of the following form, using the following class names :

JavaScript

This can occur multiple times in the same document, with different text instead of “Put me Elsewhere”, but always the same classes.

I want to change this to be of the form :

JavaScript
JavaScript

What can I try after this, and how can I deal with the tags array?

Advertisement

Answer

Much better and more beautiful would be to prepare a replacement HTML string with a placeholder, find all td tags with thisIsMyClass class and use .replace_with() to replace each:

JavaScript

Prints:

JavaScript
User contributions licensed under: CC BY-SA
5 People found this is helpful
Advertisement