我正在使用 Emacs,我想用“{\bf”替换所有出现的“\textbf{”。我尝试了几乎所有的组合,例如:
- 替换正则表达式 RET "\\texbf{" RET "{\\bf"
- 替换正则表达式 RET "\texbf{" RET "{\bf"
- 替换正则表达式 RET "\\texbf{" RET "{\\bf"
- ...
答案1
不需要正则表达式。使用replace-string
:
M-xreplace-string
Enter\textbf{
Enter{\bf
Enter
对于replace-regex
,使用\\textbf{
和{\\bf
。