EncodeURIComponent/decodeURIComponent: Difference between revisions

From NSB App Studio
Jump to navigation Jump to search
No edit summary
 
Line 9: Line 9:
The decodeURIComponent() function decodes a URI component.
The decodeURIComponent() function decodes a URI component.


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


Encode a URI:
<tabber>
<pre>
JavaScript=
<syntaxhighlight lang="JavaScript">
// Encode a URI:
var uri = "http://w3schools.com/my test.asp?name=ståle&car=saab";
Print("Encoded URI: " & encodeURIComponent(uri));
</syntaxhighlight>
|-|
BASIC=
<syntaxhighlight lang="vb.net">
' Encode a URI:
uri = "http://w3schools.com/my test.asp?name=ståle&car=saab"
uri = "http://w3schools.com/my test.asp?name=ståle&car=saab"
Print "Encoded URI: " & encodeURIComponent(uri)
Print "Encoded URI: " & encodeURIComponent(uri)
</pre>
</syntaxhighlight>
The result of res will be:
</tabber>
<pre>
Encoded URI: http%3A%2F%2Fw3schools.com%2Fmy%20test.asp%3Fname%3Dst%C3%A5le%26car%3Dsaab
</pre>


== Example (JavaScript) ==
The result will be:
Encode a URI:
<pre>
var uri = "http://w3schools.com/my test.asp?name=ståle&car=saab";
Print("Encoded URI: " & encodeURIComponent(uri));
</pre>
The result of res will be:
<pre>
<pre>
Encoded URI: http%3A%2F%2Fw3schools.com%2Fmy%20test.asp%3Fname%3Dst%C3%A5le%26car%3Dsaab
Encoded URI: http%3A%2F%2Fw3schools.com%2Fmy%20test.asp%3Fname%3Dst%C3%A5le%26car%3Dsaab

Latest revision as of 14:15, 24 July 2019

encodeURIComponent(URI)

decodeURIComponent(URI)

Description

The encodeURIComponent() function encodes a URI component. This function encodes special characters. In addition, it encodes the following characters: , / ? : @ & = + $ #

The decodeURIComponent() function decodes a URI component.

Example

// Encode a URI:
var uri = "http://w3schools.com/my test.asp?name=ståle&car=saab";
Print("Encoded URI: " & encodeURIComponent(uri));

' Encode a URI:
uri = "http://w3schools.com/my test.asp?name=ståle&car=saab"
Print "Encoded URI: " & encodeURIComponent(uri)

The result will be:

Encoded URI: http%3A%2F%2Fw3schools.com%2Fmy%20test.asp%3Fname%3Dst%C3%A5le%26car%3Dsaab

Related Items

escape, unescape, encodeURI, decodeURI