Sample code for 30+ languages & platforms
PureBasic

GetBaseDomain

See more Spider Examples

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, 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 PureBasic Downloads

PureBasic
IncludeFile "CkSpider.pb"

Procedure ChilkatExample()

    spider.i = CkSpider::ckCreate()
    If spider.i = 0
        Debug "Failed to create object."
        ProcedureReturn
    EndIf

    Debug CkSpider::ckGetBaseDomain(spider,"www.chilkatsoft.com")
    Debug CkSpider::ckGetBaseDomain(spider,"blog.chilkatsoft.com")
    Debug CkSpider::ckGetBaseDomain(spider,"www.news.com.au")
    Debug CkSpider::ckGetBaseDomain(spider,"blogs.bbc.co.uk")
    Debug CkSpider::ckGetBaseDomain(spider,"xyz.blogspot.com")
    Debug CkSpider::ckGetBaseDomain(spider,"www.heaids.org.za")
    Debug CkSpider::ckGetBaseDomain(spider,"www.hec.gov.pk")
    Debug CkSpider::ckGetBaseDomain(spider,"www.e-mrs.org")
    Debug CkSpider::ckGetBaseDomain(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::ckDispose(spider)


    ProcedureReturn
EndProcedure