I am having trouble matching the pattern, "This program cannot be run" whenever the phrase is broken over multiple lines, e.g.:
This program cannot be run
T
his program cannot be run
Thi
s program cannot be run
.
.
This pr
ogram cannot be run
The pattern can be split onto two lines at any point. I have tried using /m and /s as well as anchors and boundaries but I cannot get it to work. I am at a loss as to what I am doing wrong. I even tried using \s after every character and even that won't match! The pattern must be PCRE formatted.