Java regex 和 sed 不一样......?

发布于 2024-11-08 04:54:10 字数 561 浏览 0 评论 0原文

获取这些字符串:

00543515703528
00582124628575
0034911320020
0034911320020
005217721320739
0902345623
067913187056
00543515703528

在java中应用这个exp:^(06700|067|00)([0-9]*)

我的目的是从字符串的开头删除前导“06700、067和00”

在java中这一切都很酷,第2组总是有我想要的数字,但在sed中它不一样:

$ cat strings|sed -e 's/^\(06700|067|00\)\([0-9]*\)/\2/g'
00543515703528
00582124628575
0034911320020
0034911320020
005217721320739
0902345623
067913187056
00543515703528

我到底错过了什么?

干杯,

f。

Get these strings:

00543515703528
00582124628575
0034911320020
0034911320020
005217721320739
0902345623
067913187056
00543515703528

Apply this exp in java: ^(06700|067|00)([0-9]*).

My intention is to remove leading "06700, 067 and 00" from the beggining of the string.

It is all cool in java, group 2 always have the number I intend to, but in sed it isnt the same:

$ cat strings|sed -e 's/^\(06700|067|00\)\([0-9]*\)/\2/g'
00543515703528
00582124628575
0034911320020
0034911320020
005217721320739
0902345623
067913187056
00543515703528

What the heck am I missing?

Cheers,

f.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

一张白纸 2024-11-15 04:54:10

使用扩展正则表达式时,还需要省略之前的\。这对我有用:

sed -r 's/^(06700|067|00)([0-9]*)/\2/g' strings 

另请注意,不需要单独调用 cat

When using extended regular expressions, you also need to omit the \ before ( and ). This works for me:

sed -r 's/^(06700|067|00)([0-9]*)/\2/g' strings 

note also that there's no need for a separate call to cat

我的黑色迷你裙 2024-11-15 04:54:10

我相信你的问题是这样的:

sed 默认为 BRE:默认
sed 的行为是支持 Basic
正则表达式 (BRE)。要使用全部
本页描述的功能
将 -r (Linux) 或 -E (BSD) 标志设置为
使用扩展正则表达式

如果没有此标志, |字符按字面解释。试试这个例子:

echo "06700|067|0055555" | sed -e 's/^\(06700|067|00\)\([0-9]*\)/\2/g'

I believe your problem is this:

sed defaults to BRE: The default
behaviour of sed is to support Basic
Regular Expressions (BRE). To use all
the features described on this page
set the -r (Linux) or -E (BSD) flag to
use Extended Regular Expressions

Source

Without this flag, the | character is interpreted literally. Try this example:

echo "06700|067|0055555" | sed -e 's/^\(06700|067|00\)\([0-9]*\)/\2/g'
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文