Emacs - como substituir o regexpresion pela barra invertida

0

Estou usando o Emacs e quero substituir todas as ocorrências de "\ textbf {" por "{\ bf". Eu tentei quase todas as combinações, por exemplo:

  • substituir-regexp RET "\\ texbf {" RET "{\\ bf"
  • substituir-regexp RET "\ texbf {" RET "{\ bf"
  • substituir-regexp RET "\\ texbf {" RET "{\\ bf"
  • ...
por Danijela Simic 25.06.2017 / 18:42

1 resposta

0

Não há necessidade de regex. Use replace-string :

M-x replace-string Insira \textbf{ Digite {\bf Digite

Para replace-regex , use \textbf{ e {\bf .

    
por 25.06.2017 / 18:59

Tags