I am looking for a regex which does not match "CVS
". I don't want to use any feature which cannot translate into Emacs regex.
So far I have (in Python syntax, because I want to show it on regex101.com):
This regex does not match "CVS
" - so far so good. Unfortunately it does not match "CVS and more
" either, but it should match it.
How can I adjust my regex to match "CVS and anything after it
", but still not match "CVS
"? (I.e how can I make the last test on the regex101.com page succeed?)