So, I am doing the following regex:
Input: ([Ll])ocation
Output: \1abel
This replaces Locationwith Labeland Locationby Label. However, if I want to replace Locationwith geocodeand Locationwith geocode, can I do this with one regex?
I'm doing a search and replace in notepad ++ at the moment, but I had this problem in several regex dialects.
source
share