将数字之间的单破折号替换为双破折号
我无法确定在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这对我有用
Mx Replace-regexp
这替换:
与:
This worked for me with
M-x replace-regexp
This replaces:
With:
尝试将模式:替换
为:
Try replacing the pattern:
with: