使用 Sed 和正则表达式进行子字符串替换

发布于 2024-12-21 04:30:36 字数 573 浏览 0 评论 0原文

我正在使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

梦亿 2024-12-28 04:30:36

添加正则表达式标志,编辑正则表达式,删除 ({ 等关键字的转义符。似乎现在可以工作

ip="192.168.10.12"
sed -i -r "s/(\{http,[\t ]*\[[\t ]*\{)\"[1-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\"/\1\"$ip\"/" /root/sandbox/app.config

Add regex flag, edit your regular expression removing escapes from keywords like ( or {. Seems working now

ip="192.168.10.12"
sed -i -r "s/(\{http,[\t ]*\[[\t ]*\{)\"[1-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\"/\1\"$ip\"/" /root/sandbox/app.config
故乡的云 2024-12-28 04:30:36

这可能对您有用:

sed  "s/\({http,[\t ]*\[[\t ]*{\)\"[0-9]\{1,3\}\.[0-9]\{1,3\}\.[0-9]\{1,3\}\.[0-9]\{1,3\}\"/\1\"$ip\"/"

{ 是文字时,您不需要转义它们。

This might work for you:

sed  "s/\({http,[\t ]*\[[\t ]*{\)\"[0-9]\{1,3\}\.[0-9]\{1,3\}\.[0-9]\{1,3\}\.[0-9]\{1,3\}\"/\1\"$ip\"/"

You don't need to escape {'s when they are literal.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文