Programming Examples

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

C Examples

Bounced Mail
Bz2
Certificates/Keys
Charset
CSV
DKIM / DomainKey
Diffie-Hellman
DSA
Email Object
Encryption
FileAccess
FTP
HTML Conversion
HTTP
IMAP
MHT / HTML Email
MIME
NTLM
POP3
RSA
SMTP
Socket
Spider
SSH Key
SSH
SSH Tunnel
SFTP
Tar
Upload
XML
Zip
Amazon S3

 

 

 

 

 

 

 

 

Avoiding Outbound Links Matching Patterns

The spider accumulates outbound links when crawling. Your program may specify any number of "avoid patterns" to prevent any link matching at least one of the wildcarded patterns from being added.

Downloads:

MS Windows Visual C/C++ Libraries
Linux/CentOS C/C++ Libraries
MAC OS X C/C++ Libraries
Solaris C/C++ Libraries
C++ Builder Libraries
#include <C_CkSpider.h>

void ChilkatSample(void)
    {
    HCkSpider spider;
    BOOL success;
    long i;
    const char * url;

    //  The Chilkat Spider component/library is free.
    spider = CkSpider_Create();

    //  First, we'll get the outbound links for a page in the
    //  Google directory.  Then we'll add some avoid patterns
    //  and then re-fetch, to see it work...

    CkSpider_Initialize(spider,"directory.google.com");
    CkSpider_AddUnspidered(spider,"http://directory.google.com/Top/Recreation/Food/Cheese/");

    success = CkSpider_CrawlNext(spider);

    //  Display the outbound links

    for (i = 0; i <= CkSpider_getNumOutboundLinks(spider) - 1; i++) {
        printf("%s\n",CkSpider_getOutboundLink(spider,i));
    }

    //  The output:
    //  http://www.cheese.com/
    //  http://www.cheesediaries.com/
    //  http://www.WisDairy.com/
    //  http://www.newenglandcheese.com
    //  http://www.ilovecheese.com
    //  http://www.cheesefromspain.com
    //  http://www.realcaliforniacheese.com/
    //  http://www.frencheese.co.uk/
    //  http://www.cheesesociety.org/
    //  http://www.specialcheese.com/queso.htm
    //  http://www.franceway.com/cheese/intro.htm
    //  http://www.foodsubs.com/Chesfirm.html
    //  http://www.cheeseboard.co.uk/
    //  http://www.thecheeseweb.com/
    //  http://www.vtcheese.com/
    //  http://www.coldbacon.com/cheese.html
    //  http://www.norwegiancheeses.co.uk/
    //  http://www.reluctantgourmet.com/cheese.htm
    //  http://www.lancewood.co.za/
    //  http://www.switzerlandcheese.ca
    //  http://www.frenchcheese.dk/
    //  http://www.dolcevita.com/cuisine/cheese/cheese.htm
    //  http://cheeseisland.net/
    //  http://www.cheestrings.ca/
    //  http://www.dreamcheese.co.uk
    //  http://hgic.clemson.edu/factsheets/HGIC3506.htm
    //  http://www.epicurious.com/cooking/how_to/food_dictionary/entry?id=1815
    //  http://www.mousetrapcheese.co.uk
    //  http://taquitos.net/yum/gc.shtml
    //  http://www.greek-recipe.com/static/greek-cheese
    //  http://www.park.org/Netherlands/pavilions/food_and_markets/cheese/introduction.html
    //  http://www.dairyfarmers.org/engl/recipes/4_1.asp
    //  http://www.prairieridgecheese.com/wischeesguid.html
    //  http://dmoz.org/cgi-bin/add.cgi?where=Recreation/Food/Cheese
    //  http://dmoz.org/about.html
    //  http://dmoz.org/cgi-bin/apply.cgi?where=Recreation/Food/Cheese

    //  Do it again, but this time with avoid patterns.
    CkSpider_Initialize(spider,"directory.google.com");
    CkSpider_AddUnspidered(spider,"http://directory.google.com/Top/Recreation/Food/Cheese/");

    //  Add some avoid patterns:
    CkSpider_AddAvoidOutboundLinkPattern(spider,"*dmoz.org*");
    CkSpider_AddAvoidOutboundLinkPattern(spider,"*?id=*");
    CkSpider_AddAvoidOutboundLinkPattern(spider,"*.co.uk*");
    success = CkSpider_CrawlNext(spider);

    printf("-----------------------\n");

    //  Display the outbound links
    for (i = 0; i <= CkSpider_getNumOutboundLinks(spider) - 1; i++) {
        printf("%s\n",CkSpider_getOutboundLink(spider,i));
    }

    //  Output:
    //  http://www.cheese.com/
    //  http://www.cheesediaries.com/
    //  http://www.WisDairy.com/
    //  http://www.newenglandcheese.com
    //  http://www.ilovecheese.com
    //  http://www.cheesefromspain.com
    //  http://www.realcaliforniacheese.com/
    //  http://www.cheesesociety.org/
    //  http://www.specialcheese.com/queso.htm
    //  http://www.franceway.com/cheese/intro.htm
    //  http://www.foodsubs.com/Chesfirm.html
    //  http://www.thecheeseweb.com/
    //  http://www.vtcheese.com/
    //  http://www.coldbacon.com/cheese.html
    //  http://www.reluctantgourmet.com/cheese.htm
    //  http://www.lancewood.co.za/
    //  http://www.switzerlandcheese.ca
    //  http://www.frenchcheese.dk/
    //  http://www.dolcevita.com/cuisine/cheese/cheese.htm
    //  http://cheeseisland.net/
    //  http://www.cheestrings.ca/
    //  http://hgic.clemson.edu/factsheets/HGIC3506.htm
    //  http://taquitos.net/yum/gc.shtml
    //  http://www.greek-recipe.com/static/greek-cheese
    //  http://www.park.org/Netherlands/pavilions/food_and_markets/cheese/introduction.html
    //  http://www.dairyfarmers.org/engl/recipes/4_1.asp
    //  http://www.prairieridgecheese.com/wischeesguid.html


    CkSpider_Dispose(spider);

    }

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

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