Skip to content
Advertisement

How to replace text over multiple lines using preg_replace

Hi have the following content within an html page that stretches multiple lines

JavaScript

I need to replace everthing between <div class="c-fc c-bc" id="content"> and </div> with custom text

I use the following code to accomplish this but it does not want to work if it’s multiple lines, but works if evertinh is in one line

JavaScript

Am I missing something?

Advertisement

Answer

If this weren’t HTML, I’d tell you to use the DOTALL modifier to change the meaning of . from ‘match everything except new line’ to ‘match everything’:

JavaScript

But this is HTML, so use an HTML parser instead.

User contributions licensed under: CC BY-SA
7 People found this is helpful
Advertisement