Skip to content
Advertisement

Extract data along with html tag when data is given as search item

I am using beautifulsoup to extract html data. I need to extract the html tags along with the data if data is given as search item provided the tag can be anything.

As a sample considering the following html code

JavaScript

Using the following code if tag is known, then the entire tag with data is available

JavaScript

This will give the

JavaScript

But if I give ‘Hello’ as search item I need to get all the tags which contain ‘Hello’ like

JavaScript

Advertisement

Answer

You could use a css selector that checks if an element contains a string:

JavaScript

Example

JavaScript

Output

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