I would like to remove everything before a string 'EXEC'. How to do that in Notepad++?
There are many examples with regular expressions and special characters but my sentence has two EXEC so none of them solved my problem. I want to ignore EXECUTION and remove everything before EXEC.
Example:
Abcdefghijklmn EXECUTION EXEC myfilename here
Expected Result:
EXEC myfilename here

