如何使用Perl正则表达式删除未使用的嵌套HTML span标记?

前端之家收集整理的这篇文章主要介绍了如何使用Perl正则表达式删除未使用的嵌套HTML span标记?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在尝试从 HTML文件删除未使用的跨度(即没有属性的跨度),已经清除了我不想要的所有属性与其他正则表达式.

我的正则表达式没有选择要删除的正确的开始和结束标记对,我遇到了问题.

my $a = 'a <span>b <span style="color:red;">c</span> d</span>e';
$a =~ s/<span\s*>(.*?)<\/span>/$1/g;
print "$a\

回报

a b <span style="color:red;">c d</span>e

但是我希望它能够回归

a b <span style="color:red;">c</span> de

帮助赞赏.

解决方法

试试 HTML::Parser

#!/usr/bin/perl

use strict;
use warnings;

use HTML::Parser;

my @print_span;
my $p = HTML::Parser->new(
  start_h   => [ sub {
    my ($text,$name,$attr) = @_;
    if ( $name eq 'span' ) {
      my $print_tag = %$attr;
      push @print_span,$print_tag;
      return if !$print_tag;
    }
    print $text;
  },'text,tagname,attr'],end_h => [ sub {
    my ($text,$name) = @_;
    if ( $name eq 'span' ) {
      return if !pop @print_span;
    }
    print $text;
  },tagname'],default_h => [ sub { print shift },'text'],);
$p->parse_file(\*DATA) or die "Err: $!";
$p->eof;

__END__
<html>
<head>
<title>This is a title</title>
</head>
<body>
<h1>This is a header</h1>
a <span>b <span style="color:red;">c</span> d</span>e
</body>
</html>

猜你在找的Perl相关文章