Ok so I doing the following regex replace:
Input: ([Ll])ocation
Output: \1abel
That replaces Location
with Label
and location
with label
. However, if I want to replace location
with geocode
and Location
with Geocode
, can I do that with a single regex?
I'm doing a search and replace in notepad++ at the moment, but I've had this problem in multiple regex dialects.