16

I am working with a html script converted into a string

How do I replace all the html code in tags with blank using regex?

1 Answer 1

22

Using a relatively simple pattern (for which it might be a good idea to expand on),

import re
html = re.sub(r'<.+?>', '', html)
Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.