if match(g:possibilities, "在 vim\(script\) 中的正则表达式之后使用反向引用?")

发布于 2024-08-17 03:51:33 字数 365 浏览 3 评论 0 原文

我希望能够检查 if 块内 $1 的值,以获得第一个反向引用。然而 vimscript 不是 perl。

有什么方法可以做到这一点吗?我知道在正则表达式中使用 \1、\2 等的可能性,但我想匹配然后在后续语句中使用这些值,就像在 perl、php 等中一样。

例如如果能在 g// 命令的计算部分中包含它,那就太好了,这样您就可以执行诸如对

:g/number: \(\d\+\)/b:number += v:matches[1] " or whatever the syntax is/could be

文件中某个数字的值求和之类的操作。

这可以做到吗?

如果没有,有充分的理由吗?

I'd like to be able to, say, check the value of $1 inside the if block, to get the first backreference. However vimscript is not perl.

Is there some way to do this? I'm aware of the possibility of using \1, \2, etc., inside the regex, but I'd like to match and then use the values in subsequent statements, as is possible in perl, php, etc.

For example it would be really nice to have in the evaluated part of g// commands, so you could do things like

:g/number: \(\d\+\)/b:number += v:matches[1] " or whatever the syntax is/could be

to total the values of some number in a file.

Can this be done?

If not, is there a good reason?

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

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

发布评论

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

评论(2

难得心□动 2024-08-24 03:51:34

在进一步的启示中,我已经完成了 :lhelpgrep submatch | lope 并发现了至少一个其他有用的功能:您可以从 substitute 命令的评估端使用 submatch({nr})。 EG

:s/there a\(r\)e n\(o \)stupid questions, on\(ly\) stupid people/\=toupper(submatch(2).submatch(1).submatch(3)."?")/

我之前尝试过这种方法,但我想我正在搜索 /backref/ 并且没有得到我正在寻找的信息。

In further revelations I've done :lhelpgrep submatch | lope and discovered at least one other useful facility: that you can use submatch({nr}) from the evaluated side of a substitute command. EG

:s/there a\(r\)e n\(o \)stupid questions, on\(ly\) stupid people/\=toupper(submatch(2).submatch(1).submatch(3)."?")/

I tried this approach before but I think I was searching for /backref/ and didn't get the info I was looking for.

独留℉清风醉 2024-08-24 03:51:34

matchlist({expr}, {pat}[, {start}[, {count}]])

返回搜索 {pat 时找到的 \1、\2、\3 等}{expr}

示例:

回显匹配列表('acd', '(a)\?(b)\?(c)\?(.*)')

结果为:['acd', 'a', '', 'c', 'd', '', '', '', '', '']

matchlist({expr}, {pat}[, {start}[, {count}]])

Returns \1,\2,\3, etc as found when searching for {pat} in {expr}

Example:

echo matchlist('acd', '(a)\?(b)\?(c)\?(.*)')

Results in: ['acd', 'a', '', 'c', 'd', '', '', '', '', '']

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