URL parser: Difference between revisions

Line 1,144:
specifies_authority: true
</pre>
 
=={{header|Mathematica}}==
<lang Mathematica>URLParse["foo://example.com:8042/over/there?name=ferret#nose"]</lang>
{{out}}
<pre><|"Scheme" -> "foo", "User" -> None, "Domain" -> "example.com",
"Port" -> 8042, "Path" -> {"", "over", "there"},
"Query" -> {"name" -> "ferret"}, "Fragment" -> "nose"|></pre>
 
=={{header|Perl}}==