// Encode a URI:
var uri = "my test.asp?name=ståle&car=saab";
NSB.Print(encodeURI(uri));
(6 intermediate revisions by 2 users not shown) | |||
Line 7: | Line 7: | ||
The encodeURI() function is used to encode a URI. | The encodeURI() function is used to encode a URI. | ||
This function encodes special characters, except: , / ? : @ & = + $ # (Use encodeURIComponent() to encode these characters). | This function encodes special characters, except: , / ? : @ & = + $ # (Use [[encodeURIComponent]]() to encode these characters). | ||
The decodeURI() function is used to decode a URI. | |||
== Example | == Example == | ||
Encode a URI: | <tabber> | ||
< | JavaScript= | ||
uri = "my test.asp?name= | <syntaxhighlight lang="JavaScript"> | ||
// Encode a URI: | |||
var uri = "my test.asp?name=ståle&car=saab"; | |||
NSB.Print(encodeURI(uri)); | |||
</syntaxhighlight> | |||
|-| | |||
BASIC= | |||
<syntaxhighlight lang="vb.net"> | |||
' Encode a URI: | |||
uri = "my test.asp?name=ståle&car=saab" | |||
Print encodeURI(uri) | Print encodeURI(uri) | ||
</pre> | </pre> | ||
</syntaxhighlight> | |||
< | </tabber> | ||
</ | |||
The result will be: | |||
The result | |||
<pre> | <pre> | ||
my%20test.asp?name=st%C3%A5le&car=saab | my%20test.asp?name=st%C3%A5le&car=saab | ||
Line 36: | Line 37: | ||
== Related Items == | == Related Items == | ||
[[ | [[escape/unEscape|escape]], [[escape/unEscape|unescape]], [[encodeURIComponent/decodeURIComponent|encodeURIComponent]], [[encodeURIComponent/decodeURIComponent|decodeURIComponent]] | ||
[[Category:Language Reference]] | [[Category:Language Reference]] | ||
[[Category:Variable Handling]] | [[Category:Variable Handling]] |
encodeURI(URI)
decodeURI(URI)
The encodeURI() function is used to encode a URI.
This function encodes special characters, except: , / ? : @ & = + $ # (Use encodeURIComponent() to encode these characters).
The decodeURI() function is used to decode a URI.
// Encode a URI:
var uri = "my test.asp?name=ståle&car=saab";
NSB.Print(encodeURI(uri));
' Encode a URI:
uri = "my test.asp?name=ståle&car=saab"
Print encodeURI(uri)
</pre>
The result will be:
my%20test.asp?name=st%C3%A5le&car=saab