ack regex:按顺序匹配同一行中的两个单词

发布于 2024-10-31 15:12:20 字数 464 浏览 4 评论 0原文

我想在文件中查找按顺序包含两个单词 word_1word_2 的行,例如下面的 Line A 中,但不是这样在 Line BLine C 中:

Line A: ... word_1 .... word_2 .... 
Line B: ... word_1 ....
Line C: ... word_2 ....

我尝试

$ack '*word_1*word_2'
$ack '(word_1)+*(word_2)+'

过在正则表达式的开头附加相同的命令 ^ (试图遵循Perl 正则表达式语法)。

这些命令都没有返回我感兴趣的文件或行。

我做错了什么?

谢谢!

I would like to find lines in files that include two words, word_1 and word_2 in order, such as in Line A below, but not as in Line B or Line C:

Line A: ... word_1 .... word_2 .... 
Line B: ... word_1 ....
Line C: ... word_2 ....

I have tried

$ack '*word_1*word_2'
$ack '(word_1)+*(word_2)+'

and the same commands with ^ appended at the beginning of the regex (in an attempt to follow the Perl regex syntax).

None of these commands return the files or the lines I am interested in.

What am I doing wrong?

Thanks!

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

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

发布评论

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

评论(1

莫言歌 2024-11-07 15:12:20

您想要查找 word_1,后跟任意次数的任何内容,最后是 word_2。那应该是

word_1.*word_2

你似乎正在使用 * 因为它经常在命令行搜索中使用,但在正则表达式中它是前面字符的量词,意味着匹配它至少 0 次。例如,正则表达式 a* 将匹配 0 个或多个 a,而正则表达式 a+ 将匹配至少一个 a< /代码>。

表示“匹配任何内容”的正则表达式元字符是 .,因此 .* 表示“匹配任何内容,任意次数。请参阅 perlrequick 有关该主题的简要介绍。

You want to find word_1, followed by anything, any number of times, followed by word_2. That should be

word_1.*word_2

You seem to be using * as it is often used in command line searches, but in regexes is it a quantifier for the preceding character, meaning match it at least 0 times. For example, the regex a* would match 0 or more as, whereas the regex a+ would match at least one a.

The regex metacharacter meaning "match anything" is ., so .* means "match anything, any number of times. See perlrequick for a brief introduction on the topic.

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