使用 Sed 和正则表达式进行子字符串替换
我正在使用 Ubuntu Natty。
我正在尝试使用 sed 使用命令行进行字符串替换。
我尝试替换的文本文件(app.config)部分如下:
%% http is a list of IP addresses and TCP ports that the Riak
%% HTTP interface will bind.
{http, [ {"127.0.0.1", 8098 } ]},
我尝试用其他内容替换 IP 地址。这是我的代码:
ip="192.168.10.12"
sed -i "s/\(\{http,[\t ]*\[[\t ]*\{\)\"[0-9]\{1,3\}\.[0-9]\{1,3\}\.[0-9]\{1,3\}\.[0-9]\{1,3\}\"/\1\"$ip\"/" /root/sandbox/app.config
但是,我收到错误 sed: -e expression #1, char 103: Invalid前述正则表达式
。
我做错了什么?
提前致谢。
I'm using Ubuntu Natty.
I'm trying to use sed to do a string replacement using the command line.
The part of the text file (app.config) I'm trying to replace is as below:
%% http is a list of IP addresses and TCP ports that the Riak
%% HTTP interface will bind.
{http, [ {"127.0.0.1", 8098 } ]},
And I'm trying to replace the IP address with something else. Here's my code:
ip="192.168.10.12"
sed -i "s/\(\{http,[\t ]*\[[\t ]*\{\)\"[0-9]\{1,3\}\.[0-9]\{1,3\}\.[0-9]\{1,3\}\.[0-9]\{1,3\}\"/\1\"$ip\"/" /root/sandbox/app.config
However, I get an error sed: -e expression #1, char 103: Invalid preceding regular expression
.
What am I doing wrong?
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
添加正则表达式标志,编辑正则表达式,删除
(
或{
等关键字的转义符。似乎现在可以工作Add regex flag, edit your regular expression removing escapes from keywords like
(
or{
. Seems working now这可能对您有用:
当
{
是文字时,您不需要转义它们。This might work for you:
You don't need to escape
{
's when they are literal.