URL পার্সার

URLs কে প্রোটোকল, হোস্ট, পাথ, ক্যোয়ারী প্যারাম, এবং হ্যাশে বিভক্ত করুন।

বিনামূল্যে অনলাইন URL পার্সার

পঠনযোগ্য অংশে বিভক্ত করতে যেকোনো URL আটকান: মূল, হোস্টনাম, পোর্ট, পথের নাম, ক্যোয়ারী স্ট্রিং এবং খণ্ড। আপনি কপি করতে পারেন এমন একটি টেবিলে কোয়েরি প্যারামিটার প্রদর্শিত হবে।

ডিবাগিং রিডাইরেক্ট, API এন্ডপয়েন্ট, OAuth কলব্যাক, এবং ট্র্যাকিং লিঙ্কের জন্য সহজ - কোনো ম্যানুয়াল বিভাজনের প্রয়োজন নেই।

Frequently Asked Questions

What URL parts are shown?
Dokall breaks a URL into protocol (https), hostname (example.com), port, pathname (/path/to/page), query string (?key=value), and fragment (#section). Query parameters appear in a separate table.
How do I read query parameters?
The query string section lists each key-value pair from the ? portion of the URL. For example, ?search=hello&page=2 shows search=hello and page=2 as separate rows you can copy.
What is the fragment (#) part?
The fragment (hash) identifies a section within the page. It is not sent to the server - the browser handles it client-side. https://example.com/docs#installation sends a request for /docs; the browser scrolls to #installation after loading.
Can I parse malformed URLs?
The parser uses the browser URL API. URLs missing a protocol may fail - try adding https://. Unusual formats like mailto: and ftp: are supported if they follow standard URL syntax.
Is the URL sent to a server?
No. Parsing runs entirely in your browser using the URL constructor. The URL is never transmitted to Dokall.