URL encoding: Difference between revisions

Content added Content deleted
(Added Algol 68)
Line 104: Line 104:
=={{header|Arturo}}==
=={{header|Arturo}}==


<lang arturo>url: "http://foo bar/"
<lang rebol>encoded: encode.url "http://foo bar/"
print encoded</lang>

print [encodeUrl url]</lang>


{{out}}
{{out}}


<pre>http%3A%2F%2Ffoo%20bar%2F</pre>
<pre>http%3A%2F%2Ffoo+bar%2F</pre>


=={{header|AutoHotkey}}==
=={{header|AutoHotkey}}==