Emacs — 如何用反斜杠替换正则表达式

Emacs — 如何用反斜杠替换正则表达式

我正在使用 Emacs,我想用“{\bf”替换所有出现的“\textbf{”。我尝试了几乎所有的组合,例如:

  • 替换正则表达式 RET "\\texbf{" RET "{\\bf"
  • 替换正则表达式 RET "\texbf{" RET "{\bf"
  • 替换正则表达式 RET "\\texbf{" RET "{\\bf"
  • ...

答案1

不需要正则表达式。使用replace-string

M-xreplace-stringEnter\textbf{Enter{\bfEnter

对于replace-regex,使用\\textbf{{\\bf

相关内容