pipr.tools
Pipes
Clean Email Strip formatting from pasted email for clean plain text Clean AI Output Clean plain text from ChatGPT or AI output Decode & Format JWT Decode a JWT and pretty-print header and payload Word Frequency Count word frequency in text

Remove HTML Tags

Plain text with HTML tags removed

Clean Data
Input0 chars
Output0 chars

Examples

Strip HTML tags from a CMS export for plain text

Usage
"<h1>Welcome</h1><p>This is a <b>bold</b> and <i>italic</i> p..." | regex-replace --pattern=<[^>]+> --replacement= | squeeze

Extract text from scraped product HTML

Usage
"<div class="product"><span class="name">Widget Pro</span> - ..." | regex-replace --pattern=<[^>]+> --replacement= | squeeze

Remove list markup from an HTML snippet for a text summary

Usage
"<ul><li>Item one</li><li>Item two</li><li>Item three</li></u..." | regex-replace --pattern=<[^>]+> --replacement= | squeeze