Delphi Examples

ChilkatHOMEASPVisual BasicVB.NETC#Visual C++CMFCDelphiFoxProJavaPerlPHPPythonRubySQL ServerVBScript

Delphi Examples

Bounced Mail
Character Encoding
Digital Certificates
Digital Signatures
Email
FTP
HTML-to-XML
HTTP
IMAP
Encryption
MHT / HTML Email
RSA Encryption
S/MIME
Socket
Spider
String
Tar
Upload
XML
XMP
Zip Compression

More Examples...
Byte Array
Email Object
POP3
SMTP
RSS
Atom
Self-Extractor

Unreleased...
Service
PPMD
Deflate
Bzip2
LZW
Bz2
DH Key Exchange
DSA
Icon

Type Conversion

 

Article: Understanding COM References in Delphi

GetBaseDomain

The 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, tripod, geocities, 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.

Download Chilkat Spider ActiveX

uses
    Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
    Dialogs, StdCtrls,
    SPIDERXLib_TLB,
    SPIDERXLib_TLB,
    OleCtrls;

...

procedure TForm1.Button1Click(Sender: TObject);
var
spider: TSpider;

begin
//  The Chilkat Spider component/library is free.
spider := TSpider.Create(Self);

Memo1.Lines.Add(spider.GetBaseDomain('www.chilkatsoft.com'));
Memo1.Lines.Add(spider.GetBaseDomain('blog.chilkatsoft.com'));
Memo1.Lines.Add(spider.GetBaseDomain('www.news.com.au'));
Memo1.Lines.Add(spider.GetBaseDomain('blogs.bbc.co.uk'));
Memo1.Lines.Add(spider.GetBaseDomain('xyz.blogspot.com'));
Memo1.Lines.Add(spider.GetBaseDomain('www.heaids.org.za'));
Memo1.Lines.Add(spider.GetBaseDomain('www.hec.gov.pk'));
Memo1.Lines.Add(spider.GetBaseDomain('www.e-mrs.org'));
Memo1.Lines.Add(spider.GetBaseDomain('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.au

end;

 

Need a specific example? Send a request to support@chilkatsoft.com

© 2000-2007 Chilkat Software, Inc. All Rights Reserved.

Mail Component · .NET Email Component · XML Parser