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.