Scilab Website | Contribute with GitLab | Mailing list archives | ATOMS toolboxes
Scilab Online Help
2023.1.0 - English


url_split

Split an URL (HTTP, HTTPS, FTP...)

Syntax

[proto, server, path, query, username, port, fragment] = url_split(URL);

Arguments

URL

String: An URL. Supported and tested: HTTP, HTTPS, FTP (IPv4 and IPv6)

proto

String: the protocol (ex: http, ftp, etc)

server

String: the server (ex: www.scilab.org)

path

String: the path (ex: /products/scilab)

query

String: query (ex: ?SearchText=plot3d)

username

String: username (ex: username:pass)

port

int: port (ex: 80)

Note that if the port is not provided in the URL, the value will be 0.

fragment

String: fragment (ex: #chapter1)

The fragment is also called anchor and it is used to create a bookmark inside an HTML document.

Description

Split an URL by component

This function is based on the libxml2 library (in particular, the function xmlParseURI).

Examples

[proto, server, path, query, username, port, fragment] = url_split("http://xmlsoft.org/html/libxml-uri.html#xmlParseURI")

[proto, server, path] = url_split("ftp://ftp.free.fr/pub/Distributions_Linux/debian/README")

[a,b,c,d]=url_split("https://www.scilab.org/content/search?SearchText=plot")

See also

History

VersionDescription
5.5.0 Function splitURL() introduced
2023.0.0 Renamed url_split().
Report an issue
<< toJSON Web Tools Windows tools >>

Copyright (c) 2022-2023 (Dassault Systèmes)
Copyright (c) 2017-2022 (ESI Group)
Copyright (c) 2011-2017 (Scilab Enterprises)
Copyright (c) 1989-2012 (INRIA)
Copyright (c) 1989-2007 (ENPC)
with contributors
Last updated:
Mon May 22 12:37:13 CEST 2023