I want to do a "bulk" search and replace (notepad++) in many text files but that search and replace has to be "intelligent" and do the replacement in the following way:
I search for a pattern "source" and want to replace with "target". The search for "source" should be without check upper/lower - so the search should find "Source", "source" or "SOURCE"
The automatic replacement then should be done in the following way:
"Source" -> "Target"
"source" -> "target"
"SOURCE" -> "TARGET"
Is that possible? And if yes, how to do it?