范围内的字符类 - vim

发布于 2024-11-26 17:38:45 字数 345 浏览 1 评论 0原文

假设我有以下字符串:

This is a test {{ string.string.string }}.

并尝试执行以下替换:

%s/{{ [\w\.]\+ }}/substitute/g

它将无法处理错误:未找到模式。

当我使用时:

%s/{{ [a-zA-Z\.]\+ }}/substitute/g

它有效。

有没有办法在 VIM 的范围内使用元字符类?

Given I have the following string:

This is a test {{ string.string.string }}.

And try to perform the following substitution:

%s/{{ [\w\.]\+ }}/substitute/g

It will not work with the error: Pattern not found.

When I use:

%s/{{ [a-zA-Z\.]\+ }}/substitute/g

It works.

Is there a way to use the meta-character-classes in ranges in VIM?

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

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

发布评论

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

评论(1

咽泪装欢 2024-12-03 17:38:45

您可以使用:

  • 非捕获子表达式,请参阅:help E53(您也可以使用捕获子表达式\(\),但是捕获的开销是无用的)

    <预><代码>%s/{{ \%(\w\|\.\)\+ }}/substitute/g

  • 可选匹配原子的序列 - \%[],参见 :help E70

    <预><代码>%s/{{ \%[\w\.]\+ }}/substitute/g

You can use:

  • A non capturing sub-expression, see :help E53 (you can use a capturing sub-expression as well, \(\), but the overhead of capturing is useless)

    %s/{{ \%(\w\|\.\)\+ }}/substitute/g
    
  • A sequence of optionally matched atoms - \%[], see :help E70

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