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.