John Von Essen a écrit : > Im confused. > > Wouldn't s/(\([^)]*\))/\1/g just replace exactly what it finds? I think > the outer ()'s got mixed up.
No. sed doesn't use extended regex so the special character is \( and the literal bracket is (. The easiest is to try: % echo '(abc.com)' | sed 's/(\([^)]*\))/\1/g' abc.com % echo '(abc.com)' | sed 's/\(([\w]+)\)/\1/g' (abc.com) > > To take (hello) and change it to hello, you would do: > > sed 's/\(([\w]+)\)/\1/g' > > \w is fine if you only want the cases where text only is inside. > > -John Von Essen > > On Monday, November 11, 2002, at 04:57 PM, Benoit Lacherez wrote: > > > What about sed 's/(\([^)]*\))/\1/g' ? > > > To Unsubscribe: send mail to [EMAIL PROTECTED] > with "unsubscribe freebsd-questions" in the body of the message -- Benoit Lacherez Académie de Bordeaux -- CATICE Projet de traduction de la documentation de Python: http://frpython.sourceforge.net/ To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-questions" in the body of the message