On Feb 27, 2014, at 13:27, outtacontext <[email protected]> wrote: > I need to search for this string and delete all of them in 70 web pages. The > only problem is that the file names are different as are the link names (I've > bolded and made red those the part of the search that will be different in > every file): ______________________________________________________________________
Hey There, And why is that a problem? :) Find: (?xi) # Freespacing ON and case-sensitive OFF ^[[:blank:]]*<blockquote>[[:blank:]]*\r ^[[:blank:]]*<h3><a[[:blank:]]href="/exhibitions/online/roby/.+?\.cfm">.+?</a></h3>[[:blank:]]*\r ^[[:blank:]]*</blockquote>[[:blank:]]*\r? Replace: With Nothing. Using Multi-File Search. Note: With freespacing on in the pattern all whitespace must be explicitly defined. (The pattern works as is.) I also have case-sensitive turned OFF. -- Best Regards, Chris -- This is the BBEdit Talk public discussion group. If you have a feature request or would like to report a problem, please email "[email protected]" rather than posting to the group. Follow @bbedit on Twitter: <http://www.twitter.com/bbedit> --- You received this message because you are subscribed to the Google Groups "BBEdit Talk" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected].
