Hi, @dev-petty, @peterjones, @terry-r and All,
Yes I was too rapid, directly answering, without testing in N++. My bad !
So one correct syntax could be :
SEARCH (?s-i)(?-s:^Born:.+).+?California\R
REPLACE Leave EMPTY
Check the Regular expression search mode
What means this regex, except for the literal strings Born: and California ?
The first part (?s-i) are initial modifiers which apply to the whole regex :
The (?s) syntax means that any . regex char, found in the regex, may represent any single character, including the line-break \r and/or \n.
The (?-i) syntax means that the search is done in an sensitive way ( so not insensitive ! ). Thus it will find the words Born and California but not the words born and california or BORN and CALIFORNIA. If an insensitive search is needed just use the (?si) syntax.
The second part is (?-s:^Born:.+) which is a non-capturing group ( a group whose we do not need the contents, further on, in search and/or replacement !) (?:.........) with the -s modifier which applies to this group only. Thus, this part looks for the word Born, with that exact case, at the beginning of line ^, followed with a colon, itself followed with any standard character ., repeated +, till the very end of current line as it stops at the line-breaks.
The third part is .+? which represents the smallest ? range of any character ., including \r and \r, repeated +, until …
The fourth part California\R which represents the word California, with this exact case, followed by \R which stands for any kind of line-break ( \r\n for Windows files, \n for Unix files or \r for Mac files ).
In replacement, as its zone is empty, the entire 4 lines matched are simply deleted !
BR
BR
guy038