इस टूल में कोई समस्या है?
«यूआरएल एक्सट्रैक्टर ऑनलाइन» के बारे में
यह टूल किसी भी टेक्स्ट को स्कैन करता है और हर URL निकालता है जो उसे मिलता है। चैट लॉग, दस्तावेज़, HTML स्रोत, या ईमेल से सामग्री पेस्ट करें, और टूल लिंक की एक डुप्लिकेट हटाई गई, कॉपी करने योग्य सूची लौटाता है।
पैटर्न मिलान HTTP, HTTPS, FTP और अन्य सामान्य प्रोटोकॉल को पहचानता है।
लंबे दस्तावेज़ में लिंक का ऑडिट करने, शोध पत्र से संदर्भ इकट्ठा करने के लिए उपयोगी।
इस टूल का उपयोग कैसे करें
How to pull URLs out of an arbitrary block of text
Paste the text
Drop the source into the "Text" field. The tool scans for `http://` and `https://` prefixes; bare-domain mentions like `example.com` won't match because they're ambiguous.
Press Run
Result returns `urls` (array of distinct URLs found) and `count` (length). Duplicates are removed in order of first appearance. URLs ending in `.`, `,`, `)`, or `]` get the trailing punctuation trimmed so paragraph endings don't pollute the match.
What the regex catches
Standard `scheme://host/path?query#fragment` forms. Tracking parameters, fragments, and ports are preserved. Non-ASCII hostnames (`https://例え.jp`) work; URL-encoded paths pass through verbatim — no decoding.
What it doesn't catch
FTP/file/mailto/data URLs (only http/https), bare-domain references, and URLs that are split across lines by a stray newline. For more exotic protocols, pre-process the text to add `https://` to every domain you care about.