将数字之间的单破折号替换为双破折号

发布于 2024-11-08 14:01:48 字数 118 浏览 0 评论 0原文

我无法确定在 emacs 中使用正则表达式进行替换搜索的语法。我想要做的是将数字 [0-9] 之间出现的所有单破折号 - 替换为双破折号 --

I'm having trouble working out the syntax for doing a replacement search with regular expressions in emacs. What I want to do is to replace all single dashes - which occur between numerals [0-9] with a double dash --.

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

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

发布评论

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

评论(2

才能让你更想念 2024-11-15 14:01:48

这对我有用 Mx Replace-regexp

Replace-regexp: \([0-9]+\)-\([0-9]+\) with: \1--\2

这替换:

12-345
0-1

与:

12--345
0--1

This worked for me with M-x replace-regexp

Replace-regexp: \([0-9]+\)-\([0-9]+\) with: \1--\2

This replaces:

12-345
0-1

With:

12--345
0--1
叹梦 2024-11-15 14:01:48

尝试将模式:替换

\([0-9]\)-\([0-9]\)

为:

\1--\2

Try replacing the pattern:

\([0-9]\)-\([0-9]\)

with:

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