Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question
9  
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

10 Answers

up vote 93 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|'
share|improve this answer
2  
Works perfectly. – Joel Jul 9 '09 at 11:02
@stefanB: Yes, you're missing that solving problems is more important than pedantic nitpicking. – chaos Dec 22 '12 at 14:46
1  
@chaos: +1, no offence, I was looking couple of times for the solution to sed non-greedy matching, most of the times I find out how to do it in ... perl :) – stefanB Dec 24 '12 at 1:48
1  
@stefanB: Yeah. 's because you can't do it in sed. Your answer is just as nonresponsive to the question as mine, because while I'm dropping the sed part, you're dropping the "non-greedy" part; you aren't implementing non-greedy matching, you're emulating it for a limited set of cases. – chaos Dec 26 '12 at 16:50

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

sed 's|\(http://[^/]*/\).*|\1|g'
share|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

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 "/".

share|improve this answer

This can be done using cut:

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

With sed, I usually implement non-greedy search by searching for anything except the separator until the separator :

echo "http://www.suon.co.uk/product/1/7/3/" | sed -n 's;\(http://[^/]*\)/.*;\1;p'

Output:

http://www.suon.co.uk

this is:

  • don't output -n
  • search, match pattern, replace and print s/<pattern>/<replace>/p
  • use ; search command separator instead of / to make it easier to type so s;<pattern>;<replace>;p
  • remember match between brackets \( ... \), later accessible with \1,\2...
  • match http://
  • followed by anything in brackets [], [ab/] would mean either a or b or /
  • first ^ in [] means not, so followed by anything but the thing in the []
  • so [^/] means anything except / character
  • * is to repeat previous group so [^/]* means characters except /.
  • so far sed -n 's;\(http://[^/]*\) means search and remember http://followed by any characters except / and remember what you've found
  • we want to search untill the end of domain so stop on the next / so add another / at the end: sed -n 's;\(http://[^/]*\)/' but we want to match the rest of the line after the domain so add .*
  • now the match remembered in group 1 (\1) is the domain so replace matched line with stuff saved in group \1 and print: sed -n 's;\(http://[^/]*\)/.*;\1;p'

If you want to include backslash after the domain as well, then add one more backslash in the group to remember:

echo "http://www.suon.co.uk/product/1/7/3/" | sed -n 's;\(http://[^/]*/\).*;\1;p'

output:

http://www.suon.co.uk/
share|improve this answer
sed 's|(http:\/\/[^\/]+\/).*|\1|'
share|improve this answer

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="/"
share|improve this answer

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

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

share|improve this answer
2  
No it doesn't... At least not GNU sed. – Michel de Ruiter Feb 1 '11 at 9:51
3  
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 May 24 '12 at 0:14

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\}

share|improve this answer
echo "/home/one/two/three/myfile.txt" | sed 's|\(.*\)/.*|\1|'

don bother, i got it on another forum :)

share|improve this answer
so you get greedy match: /home/one/two/three/, if you add another / like /home/one/two/three/four/myfile.txt you will greedily match four as well: /home/one/two/three/four, the question is about non-greedy – stefanB Dec 21 '12 at 7:36

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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