Notifications
Clear all
Topic starter
10/11/2009 4:36 pm
I need a quick grep search and I Don't have my Books on me.
I need a grep for the following
Display all websites starting with 'http' but not ending in the usual 'com' or 'co.uk', but to include sub links to a maximum of 10 sub links after the root website.
Any documents online on Grep would be useful too.
Kind Regards
L
11/11/2009 5:39 am
Im sure by now you have worked it out, but its always interesting when the GREP comes out.
http\/\/.{1,50}\.[^(com|(\.uk)].{2,6}(\/.{1,50}){0,10}
Not tested, but my starter for 10
Topic starter
11/11/2009 6:56 pm
Thanks, spot on.
Regards
12/11/2009 6:51 am
no worries, glad to assist
17/11/2009 5:26 pm
Any documents online on Grep would be useful too.
Try this for a quick reference
Paul