Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

I run this substitution command on Ubuntu 12.04.

$ sed -e "s/([a-zA-Z0-9.-/\ :]+)/1/g"

However, the following error is raised.

sed: -e expression #1, char 27: Invalid range end

I can remember the same expression works on MacOSX.
Can you describe why the command fails?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
921 views
Welcome To Ask or Share your Answers For Others

1 Answer

You can solve it in two ways. One of them is to use -r switch to avoid escaping special characters and move - in the range to first or last position and avoid its special meaning, it would be like:

sed -re "s/([a-zA-Z0-9./\ :-]+)/1/g"

Otherwise you will need to escape either (, ) and +, like:

sed -e "s/([a-zA-Z0-9./\ :-]+)/1/g"

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...