SyntaxFix
Write A Post
Hire A Developer
Questions
Add the s modifier to your regex to cause . to match newlines:
s
.
$string =~ /(START)(.+?)(END)/s;