需要提取开始和结束之间的所有内容。
如果没有\n,则以下代码有效。
$mystring = "The start text always precedes \n the end of the text.";
if($mystring =~ m/start(.*?)end/) {
print $1;
}
o/p 应该是 - 文本总是在 \n 之前
需要提取开始和结束之间的所有内容。
如果没有\n,则以下代码有效。
$mystring = "The start text always precedes \n the end of the text.";
if($mystring =~ m/start(.*?)end/) {
print $1;
}
o/p 应该是 - 文本总是在 \n 之前