Regular Expressions 101

Community Patterns

Remove HTML tags and comments

1

Regular Expression
Python

r"
<.*?>|&.*?;|\\n|\\xa0
"
gm

Description

Remove HTML tags and comments

Submitted by Smit Patel - 2 years ago