I'm trying to use sed to clean up lines of URLs to extract just the domain..

So from:

http://www.suepearson.co.uk/product/174/71/3816/

I want:

http://www.suepearson.co.uk/

(either with or without the trainling slash, it doesn't matter)

I have tried:

 sed 's|\(http:\/\/.*?\/\).*|\1|'

and (escaping the non greedy quantifier)

sed 's|\(http:\/\/.*\?\/\).*|\1|'

but I can not seem to get the non greedy quantifier to work, so it always ends up matching the whole string.

link|improve this question

6  
A side-note: if you delimit your regexes with "|", you needn't escape the "/"s. In fact, most people delimit with "|" instead of "/"s to avoid the "picket fences". – AttishOculus Nov 14 '09 at 17:13
feedback

9 Answers

up vote 63 down vote accepted

Neither basic nor extended Posix/GNU regex recognizes the non-greedy quantifier; you need a later regex. Fortunately, Perl regex for this context is pretty easy to get:

perl -pe 's|(http://.*?/).*|\1|'
link|improve this answer
2  
Works perfectly. – Joel Jul 9 '09 at 11:02
feedback

Try [^/]+ instead of .*?:

sed 's|\(http://[^/]*/\).*|\1|g'
link|improve this answer
sed 's|\(http:\/\/[^\/]+\)|\1|' still spews out the whole thing. – Joel Jul 9 '09 at 10:55
@Joel: edited version should work. – chaos Jul 9 '09 at 16:55
Worked for me to solve a different problem. Thanks! – paulj Nov 15 '11 at 23:37
feedback

sed does not support "non greedy" operator.

You have to use "[]" operator to exclude "/" from match.

sed 's,\(http://[^/]*\)/.*,\1,'

P.S. there is no need to backslash "/".

link|improve this answer
feedback
sed 's|(http:\/\/[^\/]+\/).*|\1|'
link|improve this answer
feedback

sed -E interprets regular expressions as extended (modern) regular expressions

Update: -E on MacOS X, -r in GNU sed.

link|improve this answer
2  
No it doesn't... At least not GNU sed. – Michel de Ruiter Feb 1 '11 at 9:51
More broadly, -E is unique to BSD sed and therefore OS X. Links to man pages. -r does bring extended regular expressions to GNU sed as noted in @stephancheg's correction. Beware when using a command of known variability across 'nix distributions. I learned that the hard way. – faraz 23 hours ago
feedback

I realize this is an old entry, but someone may find it useful. As the full domain name may not exceed a total length of 253 characters replace .* with .\{1, 255\}

link|improve this answer
feedback

another way, not using regex, is to use fields/delimiter method eg

string="http://www.suepearson.co.uk/product/174/71/3816/"
echo $string | awk -F"/" '{print $1,$2,$3}' OFS="/"
link|improve this answer
feedback
echo "/home/one/two/three/myfile.txt" | sed 's|\(.*\)/.*|\1|'

don bother, i got it on another forum :)

link|improve this answer
feedback

This can be done using cut:

echo "http://www.suepearson.co.uk/product/174/71/3816/" | cut -d'/' -f1-3
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.