0

需要提取开始和结束之间的所有内容。

如果没有\n,则以下代码有效。

$mystring = "The start text always precedes \n the end of the text.";
if($mystring =~ m/start(.*?)end/) {
    print $1;
}

o/p 应该是 - 文本总是在 \n 之前

4

1 回答 1

0

学习perlre,特别是/s修饰语。

于 2012-04-13T00:22:52.200 回答