I have a problem about regex in Emacs.
For example, there is a string:
abcdef def
I want to write a regex that only matches ‘def’ which follows ‘abc’. That is to say, I just want to capture ‘abcdef’, not ‘def.
And I hope the point can be located between ‘abc’ and ‘def’, like ‘abc^def’. ( ^ stands for point)
I remember there is a way to do it in Perl, but I am not sure if it is feasible in ELISP.