Hello, @cal-Murphy, @terry-r, @peterjones, @alan-kilborn and All,
Yes, Alan, I must admin that this syntax is really confusing for most people and doesn’t provide a sustential benefit, unless you use this particular syntax below :
SEARCH (?x-is) \x20 (?# SPACE char ) \( (?# OPENING Paren. ) .+ (?# Some STANDARD chars) (?= \. [ ]Filename ) (?# ONLY IF '. Filename' after ) | (?# OR ) \x20 (?# SPACE char ) \( (?# OPENING Paren. ) [^(\r\n]+ (?# some NOT PAREN. chars ) (?= \. flac ) (?# ONLY IF '.flac' after )
Note that I still use the \x20 syntax because the [ ] syntax does not work in this forum ??
However, I kept my free-spacing regex as a single line to avoid the multi-lines bug in some cases !
BTW, @cal-murphy, do you remember that you asked us, six months ago, about a similar problem, which was relative to the same bunch of data !
Refer to : https://community.notepad-plus-plus.org/topic/24415/copy-then-paste-elsewhere
Cheers,
guy038