Why doesn\'t the regex (?<=fo).* match foo (whereas (?<=f).* does)?
(?<=fo).*
foo
(?<=f).*
\"foo\" =~ /(?<=f).*/m => 1 \
This has been officially classified as a bug and subsequently fixed, together with another problem concerning \Z anchors in multiline strings.
\Z