Regex expert advise
I need todo a complex search-n-replace and can't get the Regex for it. I've checked many Regex tutorials and also code libraries but can't figure it out.I need todo this in multiple files...replace a multi-line block of text that has common starting and end phrases, but variable text within. For ex. replace the following Multi-line text block...
<b>Price List</b>
...some text here...varies with file....
...some text here...varies with file....
...some text here...varies with file....
<u>email us for a custom quote</u>
....with this...
<?php include("pricetable.php") ?>
<?php include("footer.php") ?>
Since the text within the delimiting phrases varies...so only a regular expression can help and not a normal text search. Quite a lot of files to process...any regex code idea for this ??
The regex I made works for single line but not for multi-line text blocks.