Scilab 5.5.2
Please note that the recommended version of Scilab is 2025.0.0. This page might be outdated.
However, this page did not exist in the previous stable version.
splitURL
URL (HTTP, HTTPS, FTP...) を分解
呼び出し手順
[proto, server, path, query, username, port, fragment] = splitURL(URL);
引数
- URL
文字列: URL. サポート/テスト済み: HTTP, HTTPS, FTP (IPv4 および IPv6)
- proto
文字列: プロトコル (例: http, ftp, 等)
- server
文字列: サーバー (例: www.scilab.org)
- path
文字列: パス (例: /products/scilab)
- query
文字列: クエリ (例: ?SearchText=plot3d)
- username
文字列: ユーザ名 (例: username:pass)
- port
int: ポート (例: 80)
URLにポートが指定されない場合, 値は 0となることに注意してください.
- fragment
文字列: フラグメント (例: #chapter1)
フラグメントはアンカーとも呼ばれ, HTML文書内にブックマークを作成する際に使用されます.
例
[proto, server, path, query, username, port, fragment] = splitURL("http://xmlsoft.org/html/libxml-uri.html#xmlParseURI") [proto, server, path] = splitURL("ftp://ftp.free.fr/pub/Distributions_Linux/debian/README") [a,b,c,d]=splitURL("http://www.scilab.org/content/search?SearchText=plot")
参照
- getURL — URL (HTTP, HTTPS, FTP...) をダウンロード
履歴
バージョン | 記述 |
5.5.0 | この関数はScilab 5.5.0で追加されました |
Report an issue | ||
<< pathsep | Paths - Filenames | tempname >> |