Hello,
I'd like to perform a search & replace query for a command named "\suli", which is defined as
Code: Select all
\newcommand{\suli}[2]{\sum\limits^{#1}_{#2}}
Code: Select all
\sum_{#1}^{#2}

Code: Select all
\newcommand{\suli}[2]{\sum\limits^{#1}_{#2}}
Code: Select all
\sum_{#1}^{#2}
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
Code: Select all
\renewcommand{\suli}[2]{\sum_{#1}^{#2}}
Code: Select all
\\suli\{([^}]+)\}\{([^}]+)\}
Code: Select all
\sum_{\2}^{\1}
Code: Select all
\suli{n}{i=1}(x_{i}-\overline{x})(y_{i}-\overline{y})}
Now I did. And it worked. Thank you.benibela wrote:Have you enabled "Regexp"?
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis