标签: text-extraction
需要在开始和结束之间提取所有内容。
如果没有\ n。
$mystring = "The start text always precedes \n the end of the text."; if($mystring =~ m/start(.*?)end/) { print $1; }
o / p应该是 - 文本总是先于
答案 0 :(得分:0)
研究perlre,特别是/s修饰符。
perlre
/s