URL 解析器
将URL解析为协议、主机、端口、路径、查询、哈希等组件。
URL Parser
| Part | Value |
|---|---|
| Protocol | https: |
| Username | user |
| Password | pass |
| Hostname | example.com |
| Port | 8080 |
| Pathname | /path/to/page |
| Search | ?q=1&lang=en |
| Hash | #section |
| Origin | https://example.com:8080 |
| Full URL | https://user:pass@example.com:8080/path/to/page?q=1&lang=en#section |
Query Parameters
| Key | Value |
|---|---|
| q | 1 |
| lang | en |
相关工具
关于此工具
将URL解析为协议、主机、端口、路径、查询、哈希等组件。