I am beginner at regex and now I am trying to solve the following example:
I have this file below and I would like to match only the names.
@misc{diaz2006automatic,
title={AUTOMATIC ROCKING DEVICE},
author={Diaz, Navarro David and Gines, Rodriguez Noe},
year={2006},
}
@article{gentsch1992identification,
author={GenTSCH, JoN R and Glass, RI and Woods, P and Gouvea, V and Gorziglia}
I have created this regex :
(?<=author=\{).*[a-z](?=\})
but I am not able to remove "and" from the list of names.
Please, could you give my some advice? Thank you very much.