Chilkat HOME .NET Core C# Android™ AutoIt C C# C++ Chilkat2-Python CkPython Classic ASP DataFlex Delphi ActiveX Delphi DLL Go Java Lianja Mono C# Node.js Objective-C PHP ActiveX PHP Extension Perl PowerBuilder PowerShell PureBasic Ruby SQL Server Swift 2 Swift 3,4,5... Tcl Unicode C Unicode C++ VB.NET VBScript Visual Basic 6.0 Visual FoxPro Xojo Plugin
(Delphi DLL) Parse a URL into its Component PartsDemonstrates how to parse a URL into it's component parts.
uses Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics, Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Vcl.StdCtrls, Url; ... procedure TForm1.Button1Click(Sender: TObject); var url: HCkUrl; urlStr: PWideChar; success: Boolean; begin url := CkUrl_Create(); urlStr := 'https://www.amazon.com/Anarchy-State-Utopia-Robert-Nozick/dp/0465051006/ref=sr_1_1?s=books&ie=UTF8&qid=1430344305&sr=1-1&keywords=nozick#frag123'; success := CkUrl_ParseUrl(url,urlStr); // Assume success.. Memo1.Lines.Add('URL: ' + urlStr); Memo1.Lines.Add('Host: ' + CkUrl__host(url)); Memo1.Lines.Add('Port: ' + IntToStr(CkUrl_getPort(url))); Memo1.Lines.Add('HostType: ' + CkUrl__hostType(url)); Memo1.Lines.Add('Ssl: ' + IntToStr(Ord(CkUrl_getSsl(url)))); Memo1.Lines.Add('Path: ' + CkUrl__path(url)); Memo1.Lines.Add('Query: ' + CkUrl__query(url)); Memo1.Lines.Add('Frag: ' + CkUrl__frag(url)); Memo1.Lines.Add('----'); urlStr := 'http://matt:secret@www.chilkatsoft.com:8080/somepath.asp?test=123&size=2'; success := CkUrl_ParseUrl(url,urlStr); // Assume success.. Memo1.Lines.Add('URL: ' + urlStr); Memo1.Lines.Add('Host: ' + CkUrl__host(url)); Memo1.Lines.Add('Port: ' + IntToStr(CkUrl_getPort(url))); Memo1.Lines.Add('HostType: ' + CkUrl__hostType(url)); Memo1.Lines.Add('Ssl: ' + IntToStr(Ord(CkUrl_getSsl(url)))); Memo1.Lines.Add('Login: ' + CkUrl__login(url)); Memo1.Lines.Add('Password: ' + CkUrl__password(url)); Memo1.Lines.Add('Path: ' + CkUrl__path(url)); Memo1.Lines.Add('Query: ' + CkUrl__query(url)); Memo1.Lines.Add('Frag: ' + CkUrl__frag(url)); CkUrl_Dispose(url); end; |
© 2000-2024 Chilkat Software, Inc. All Rights Reserved.