如何告诉 Emacs 在搜索和替换字符串中保留大小写?

发布于 2024-12-01 05:59:23 字数 339 浏览 1 评论 0原文

我正在尝试在 Emacs 中执行正则表达式搜索和替换(使用 Mx query-replace-regexp),但通常有用的智能案例却妨碍了我。我的来源是:

One
Two
Three

我想将每一行替换为 之类的内容。不幸的是,每行开头的大写字母都被误解了,我得到的 是我不想要的大写字母。

我可以找到有关如何使搜索区分大小写以及如何在替换字符串中保持 \1 小写的示例,但没有找到有关如何保持整个替换字符串大小写不变的示例。

I'm trying to perform a regex search and replace in Emacs (using M-x query-replace-regexp), but the usually helpful smart case is getting in the way. My source is:

One
Two
Three

And I want to replace each line with something like <item name="One"/> instead. Unfortunately the capital at the start of each line is being misinterpreted, and I'm getting <Item> with an uppercase that I don't want.

I can find examples about how to make the search case sensitive, and how to keep the \1 lowercase in the replacement string, but nothing about how to keep the entire replacement string case-unmodified.

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

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

发布评论

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

评论(2

永不分离 2024-12-08 05:59:23

尝试将其添加到您的 .emacs:

(setq case-replace nil)

Ch v case-replace RET

文档:非零意味着“查询替换”应该保留大小写
替代品。

以及手册的链接
替换命令和宽松匹配 详细说明与案例和适当变量的所有交互。

或者您可以定义一个新命令,例如:

(defun query-replace-no-case ()
   (interactive)
   (let ((case-replace nil))
       (call-interactively 'query-replace))))

并且,如果您在函数中对其进行编码,并且只想临时设置变量,则可以执行以下操作:

(let ((case-replace nil))
   (while (search-forward ...)
       (replace-match ...)))

Try adding this to your .emacs:

(setq case-replace nil)

C-h v case-replace RET:

Documentation: Non-nil means `query-replace' should preserve case in
replacements.

And a link to the manual for
Replace Commands and Lax Matches details all the interactions with case and the appropriate variables.

Or you could define a new command like:

(defun query-replace-no-case ()
   (interactive)
   (let ((case-replace nil))
       (call-interactively 'query-replace))))

And, if you were coding this up in a function, and only wanted to set the variable temporarily, you'd do something like:

(let ((case-replace nil))
   (while (search-forward ...)
       (replace-match ...)))
我三岁 2024-12-08 05:59:23

在当前的 emacs 中,您可以在选项菜单中找到该选项。如果您希望通过同一菜单保存选项。

In a current emacs, you can find the option in the Options menu. Save Options, if you wish through the same menu.

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