Perl中的向后引用

前端之家收集整理的这篇文章主要介绍了Perl中的向后引用前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

\n表示向后引用

use strict;
use warnings;
my $str = "<title> hello world </title>";


if($str =~ /(?#start of a tag)<([^>]+)>(.*?)(?#end od a tag)<\/(\1)>/){
	print "$1\n";
	print "$2\n";
	print "$3\n";
}

猜你在找的Perl相关文章