进行替换时 vim 中的正则表达式

发布于 2024-12-09 04:38:50 字数 91 浏览 0 评论 0原文

我有一个文本文件,其中包含许多语句,例如:“1”、“23”、...等,我想用 1、23、...等替换这些出现的内容。这只是删除引号。我怎样才能在 VIM 中做到这一点?

I have a text file with many statements like: "1", "23",..... etc and I want to replace these occurrences with 1, 23,.... etc. That is just removing the quotes. How can I do this in VIM?

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

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

发布评论

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

评论(3

伏妖词 2024-12-16 04:38:50

使用 :

:%s/"\(\d\+\)"/\1/g

这意味着:用数字序列本身替换双引号之间的任何数字序列。

更多参考:

:help :s
:help pattern

Use :

:%s/"\(\d\+\)"/\1/g

Which means: replace any sequence of digits between double quotes with the sequence of digits itself.

For more reference:

:help :s
:help pattern
沒落の蓅哖 2024-12-16 04:38:50

然后输入 esc:

:%s/\"\([0-9]*\)\"/\1/g

这会将模式:“任何数字”替换为任何数字。
请注意,\1 将复制其中已匹配的内容:\( \)

You type esc then:

:%s/\"\([0-9]*\)\"/\1/g

This will substitute the pattern: " any digits " by any digits.
Note that \1 will replicate what has been matched within these: \( \)

那支青花 2024-12-16 04:38:50

你可以这样做 -

:%s/"\(\d\+\)"/\1/c

You can do it like this -

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