我试图用我面临的问题替换标题标签是<h*>
当
我有一个标题标签时标签没有环绕,它从一行开始并在另一行结束,例如。<center><h*>.....</h*></center>
<center>
<h3> Spotting the
Pileated
HummingBird in
the wild </h3>
我想用标签替换标题<center><h*> .. </h*></center>
标签。
这就是我正在尝试的工作,它的标题标签在同一行开始和结束,但不是多行。
while (<>){
$_ =~ s/^\<h(.)>\s*(.*)\s*<\/h(.)>/<center><h$1>$2<\/h$3><\/center>/g;
print $_;
}