VBScript Examples

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

VBScript Examples

Bounced Mail
Bz2
Character Encoding
Digital Certificates
CSV
Digital Signatures
Email
FTP
HTML Conversion
HTTP
IMAP
Encryption
MHT / HTML Email
POP3
PFX
RSA
S/MIME
SFTP
SMTP
Socket
Spider
SSH
SSH Key
SSH Tunnel
String
Tar
Upload
XML
XMP
Zip Compression
Self-Extractor

More Examples...
Amazon S3
Email Object
DKIM / DomainKey
NTLM
FileAccess
Byte Array
RSS
Atom
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.

Dim fso, outFile
Set fso = CreateObject("Scripting.FileSystemObject")
Set outFile = fso.CreateTextFile("output.txt", True)

' The Chilkat Spider component/library is free.
set spider = CreateObject("Chilkat.Spider")

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

outFile.Close

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

Mail Component · XML Parser