cosmicsea
01-31-2010, 11:53 PM
im trying to use this code right here to crawl for some links
/example\.com\/(.*)/
but the problem is it is leaving out the "/" after .com. lets say the link format for example is example.com/435345/details.html
the code works fine and will grab that link but it grabs it as example.com435345/details.html
so what am i missing or doing wrong to make the "/" not be there?
can anyone help with this? Thanks
----------------
nevermind i fixed it. the proper way was. /example\.com(\/.*)/
/example\.com\/(.*)/
but the problem is it is leaving out the "/" after .com. lets say the link format for example is example.com/435345/details.html
the code works fine and will grab that link but it grabs it as example.com435345/details.html
so what am i missing or doing wrong to make the "/" not be there?
can anyone help with this? Thanks
----------------
nevermind i fixed it. the proper way was. /example\.com(\/.*)/