Posts learning regex
Post
Cancel

learning regex

learning regex

some examples used regex in my daily work

latex counting words

Latex text analysis in Texstudio count words including the citing expression \cite{xxx,xxx}. We can replace it with no input in notepad++ or other text editor.

The expression can be matched by

1
\\cite{.*?}

and removed by editor. Then we can count the words without citing expression

This post is licensed under CC BY 4.0 by the author.