show/hide this revision's text 2 deleted 4 characters in body

Does your editor or IDE support search/replace with regular expressions? You could get past your problem using a regex with word boundaries: e.g. replacing "\bAdminAction\b" with "\bAdminActionPlug\bAdminActionPlug" wouldn't match "AdminActionLogger".

show/hide this revision's text 1

Does your editor or IDE support search/replace with regular expressions? You could get past your problem using a regex with word boundaries: e.g. replacing "\bAdminAction\b" with "\bAdminActionPlug\b" wouldn't match "AdminActionLogger".