Perl Examples

ChilkatHOMEAndroid™ASPVisual BasicVB.NETC#iOS (IPhone)Objective-CC++CMFCDelphiFoxProJavaPerl
PHP ExtensionPHP ActiveXPythonPowerShellRubySQL ServerVBScript

Perl Examples

Quick Start
Unicode
Byte Array
Bz2
Certificates
CSV
Email
Encryption
FTP
HTML Conversion
HTTP
IMAP
MHT
MIME
POP3
RSA
S/MIME
Signatures
SMTP
Socket / SSL
Spider
SFTP
SSH Key
SSH
SSH Tunnel
Tar
HTTP Upload
XML
XMP
Zip

More Examples...
String
Amazon S3
Email Object
DKIM / DomainKey
NTLM
FileAccess
RSS
Atom
Self-Extractor
Service
PPMD
Deflate
DH Key Exchange
DSA
Bzip2
LZW

 

 

 

 

 

 

 

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.

 Chilkat Perl Module Downloads for Windows, Linux, and MAC OS X

use chilkat();

# The Chilkat Spider component/library is free.
$spider = new chilkat::CkSpider();

print $spider->getBaseDomain("www.chilkatsoft.com") . "\r\n";
print $spider->getBaseDomain("blog.chilkatsoft.com") . "\r\n";
print $spider->getBaseDomain("www.news.com.au") . "\r\n";
print $spider->getBaseDomain("blogs.bbc.co.uk") . "\r\n";
print $spider->getBaseDomain("xyz.blogspot.com") . "\r\n";
print $spider->getBaseDomain("www.heaids.org.za") . "\r\n";
print $spider->getBaseDomain("www.hec.gov.pk") . "\r\n";
print $spider->getBaseDomain("www.e-mrs.org") . "\r\n";
print $spider->getBaseDomain("cra.curtin.edu.au") . "\r\n";

# 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

 

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