This tool extracts all URLs from your text. It provides flexible options so you can extract every URL, extract only URLs that match specified substrings, extract all except those containing specified substrings, or format the extracted URLs with a custom format. Simply enter your text and select the extraction mode that suits your needs.
Examples:
Extract All URLs
Every URL in the text is extracted.
Before:
Check out https://example.com and http://test.com for more info.
After:
https://example.com http://test.com
Extract Only URLs Matching Specified Substrings
Only URLs containing the specified substring (e.g., "example") are extracted.
Before:
Visit https://example.com and http://test.com for details.
After (specifying "example"):
https://example.com
Extract All Except URLs Containing Specified Substrings
Extracts every URL except those containing the specified substring (e.g., "test").
Before:
Visit https://example.com and http://test.com for details.
After (excluding "test"):
https://example.com
Extract URLs with Custom Format
Each extracted URL is formatted using a custom format (e.g., wrapping in square brackets).
Before:
Go to https://example.com now.
After (format "[{url}]"):
[https://example.com]