How to remove all HTML tags in Notepad++
Removing all HTML tags using regular expressions:
- Open the file in Notepad++.
- Press Ctrl+H to open the replace window.
- In the Find field, enter:
[<].*?>
This regular expression searches for the beginning and end of HTML tags, removes them, but leaves the text from the HTML tag, such as link text.
Using the regular expression, you can remove all HTML tags, leaving only the necessary text.