I want to extract information from text. For example:
\bibitem[{Aguaron and Moreno-Jim{\'e}nez(2003)}]{aguaron2003geometric}
\bibitem[{Alonso and Lamata(2006)}]{alonso2006consistency}
I made a regex,
Find:
(\\bibitem)(\[\{.+?\}\])(\{.+?\})
Replace by: $1$3
The output should be:
\bibitem{aguaron2003geometric}
\bibitem{alonso2006consistency}
But what I got was this.
\bibitem{aGuaron2003geOmetric}
\bibitem{aLonso2006coNsistency}
I wonder why? What happened to the capitalization of the letters?
Local environment: mac mojave + sublime textx3 v3.2.1 build 3207
Can anyone help me?
