layout | title | icon | group |
---|---|---|---|
samples |
UTF-8 Decoding of a URL |
fa-caret-right |
simple |
{{ page.title }}
Steps
- Create a project utils_url.
- Create a JavaScript service with the name url_decode.js.
- Enter the following content:
var url = require('utils/v3/url');
var response = require('http/v3/response');
var input = 'http%3A%2F%2Fwww.dirigible.io%2F';
var result = url.decode(input, 'UTF-8');
console.log(('Decoded URL: ' + result));
response.println(JSON.stringify(result));
response.flush();
response.close();
For more information, see the API documentation.