|  | 
Chilkat  HOME  Android™  AutoIt  C  C#  C++  Chilkat2-Python  CkPython  Classic ASP  DataFlex  Delphi DLL  Go  Java  Node.js  Objective-C  PHP Extension  Perl  PowerBuilder  PowerShell  PureBasic  Ruby  SQL Server  Swift  Tcl  Unicode C  Unicode C++  VB.NET  VBScript  Visual Basic 6.0  Visual FoxPro  Xojo Plugin
| (Delphi DLL) GetBaseDomainThe GetBaseDomain method is a utility function that converts a domain into a "domain base", which is useful for grouping URLs. For example: abc.chilkatsoft.com, xyz.chilkatsoft.com, and blog.chilkatsoft.com all have the same base domain: chilkatsoft.com. Things get more complicated when considering country domains (.au, .uk, .se, .cn, etc.) and government, state, and .us domains. Also, domains such as blogspot, wordpress, etc, are treated specially so that "xyz.blogspot.com" has a base domain of "xyz.blogspot.com". Note: If you find other domains that should be treated similarly to blogspot.com, send a request to support@chilkatsoft.com. 
 uses Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics, Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Vcl.StdCtrls, Spider; ... procedure TForm1.Button1Click(Sender: TObject); var spider: HCkSpider; begin spider := CkSpider_Create(); Memo1.Lines.Add(CkSpider__getBaseDomain(spider,'www.chilkatsoft.com')); Memo1.Lines.Add(CkSpider__getBaseDomain(spider,'blog.chilkatsoft.com')); Memo1.Lines.Add(CkSpider__getBaseDomain(spider,'www.news.com.au')); Memo1.Lines.Add(CkSpider__getBaseDomain(spider,'blogs.bbc.co.uk')); Memo1.Lines.Add(CkSpider__getBaseDomain(spider,'xyz.blogspot.com')); Memo1.Lines.Add(CkSpider__getBaseDomain(spider,'www.heaids.org.za')); Memo1.Lines.Add(CkSpider__getBaseDomain(spider,'www.hec.gov.pk')); Memo1.Lines.Add(CkSpider__getBaseDomain(spider,'www.e-mrs.org')); Memo1.Lines.Add(CkSpider__getBaseDomain(spider,'cra.curtin.edu.au')); // Prints: // chilkatsoft.com // chilkatsoft.com // news.com.au // bbc.co.uk // xyz.blogspot.com // heaids.org.za // hec.gov.pk // e-mrs.org // curtin.edu.a CkSpider_Dispose(spider); end; | ||||
© 2000-2025 Chilkat Software, Inc. All Rights Reserved.