EncodeURI/decodeURI: Difference between revisions

From NSB App Studio
Jump to navigation Jump to search
No edit summary
Line 11: Line 11:
The decodeURI() function is used to decode a URI.
The decodeURI() function is used to decode a URI.


== Example (Basic) ==
== Example ==


Encode a URI:
<tabber>
<pre>
JavaScript=
<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"
uri = "my test.asp?name=ståle&car=saab"
Print encodeURI(uri)
Print encodeURI(uri)
</pre>
</pre>
The result of res will be:
</syntaxhighlight>
<pre>
</tabber>
my%20test.asp?name=st%C3%A5le&car=saab
</pre>


== Example (JavaScript) ==
Encode a URI:
<pre>
var uri = "my test.asp?name=ståle&car=saab";
NSB.Print(encodeURI(uri));
</pre>
The result of res will be:
The result of res will be:
<pre>
<pre>

Revision as of 14:13, 24 July 2019

encodeURI(URI)

decodeURI(URI)

Description

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.

Example

// 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 of res will be:

my%20test.asp?name=st%C3%A5le&car=saab

Related Items

escape, unescape, encodeURIComponent, decodeURIComponent