Scheme-less URLs missed
Bare 'example.com' without scheme is not matched.
Fix: Prepend https:// before running, or use a more permissive regex.
header • up to 320x100 / 728x90
Pull all HTTP / HTTPS URLs out of any text with trailing punctuation cleaned
Output will appear here...
content bottom • up to 300x250
sidebar • 160x600
Last reviewed:
A URL (Uniform Resource Locator) is a web address that points to a resource like a page, API endpoint, or file, typically including scheme, host, path, and query.
URL Extractor scans for 'http://' and 'https://' patterns, captures the continuous URL tokens, strips trailing punctuation like . , ; : ! ? ) ], deduplicates them, and outputs one URL per line.
It's a staple for SEO audits, content reviews, link rot detection, and extracting references from long-form articles or PDFs pasted into the browser.
See https://example.com/page, https://docs.example.com/intro, and http://old.site.
https://example.com/page https://docs.example.com/intro http://old.site
Bare 'example.com' without scheme is not matched.
Fix: Prepend https:// before running, or use a more permissive regex.
Older tools may keep '.' or ',' on the end.
Fix: This tool strips trailing . , ; : ! ? ) ] automatically.
http and https. FTP, mailto, and magnet links are not captured.
Yes — exact duplicates are deduplicated.
Yes — percent-encoded and UTF-8 URLs both work.
Yes — href attributes are extracted along with naked URLs.
No — extraction is entirely client-side.
Pair URL extraction with email and phone extractors, plus HTML stripping, for full text mining. You can also browse the full String Utilities category for more options.
Extract every email address from a block of text, deduplicated and newline-separated
Find phone numbers in free-form text using a permissive regex across common formats
Remove HTML tags, scripts, and comments — returning clean plain text
Check URLs for broken links
Parse a URL into scheme, host, port, path, query parameters, fragment, and origin — fully client-side
Remove duplicate lines from text
Convert text to URL-friendly slug
Convert binary to readable text
Convert text between different cases (camel, snake, kebab, etc.)
Count characters in text
Convert text to cursive/unicode style
Find and replace text patterns