我正在尝试使用包含某些类的文件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};
}
}
}
答案 0 :(得分:2)
有助于阅读您正在使用的软件的documentation。使用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;