0

我正在尝试使用一个all.css包含一些类的文件,并且想要一个green.css只包含绿色类的文件。

我正在使用perl CSS模块,关于如何使用它来搜索包含.green并以结尾的行{然后提取css块的任何建议?

我是 perl 的新手,到目前为止,我试图只打印匹配“绿色”的选择器行,但我无法让它工作:

my $css = CSS->new( { 'parser' => 'CSS::Parse::Lite'} );

print $styleSheetPath;
$css->read_file($styleSheetPath);

 open my $fileHandle, ">>", "green.css" or die "Can't open 'green.css'\n";

 #search for lines that contain .green and end { and then extract css block 
 #and write to green.css
 serialize($css);

 sub serialize{
       my ($obj) = @_;

    for my $style (@{$obj->{styles}}){
         print join "\n ", map {$_->{name}} @{$style->{selectors}};
         if ( grep( /green/, @{$style->{selectors}} )) {
           print "green matches ";
            print $_->{name};
         }

       }
}
4

1 回答 1

2

它有助于阅读您正在使用的软件的文档。使用参数调用该get_style_by_selector方法.green以查找样式。

use CSS qw();
my $css = CSS->new;
$css->read_string('.red { clear: both; } .green { clear: both; }');
$css->get_style_by_selector('.green')->to_string;
于 2013-07-19T10:00:28.990 回答