Quote:
Originally Posted by bremler
Got it! Clicked in 'minimal matching' and that did the track. Thanks so much :-))
|
The reason for this is that, without the "minimal matching", the "(.*)" search will include the closing tag (in fact, it will include the whole text of the file from that point onwards. That's also why it was only finding the first instance, of course.), hence it's not being replaced. With the "minimal match", it will stop when it reaches text that matches that specified after the wildcard bit.