我知道这里出了点大问题,但我是 Perl 的新手,希望做以下事情:
查找 all.css 中所有包含未使用的 CSS 行的行并执行一些逻辑。我的代码的结构方式似乎无法匹配以下内容:
if ($lineA =~ /$lineU/) #如果 all.css 中的行包含未使用的.css 中的行
因为变量是单独定义的。
我将如何构建程序以便能够将 all.css 中的行与未使用的.css 中的行进行匹配?
我的程序如下:
#!/usr/bin/perl
use strict;
use warnings;
open(my $unused_handle,'<', "unused.css") or die $!;
open(my $all_handle,'<',"all.css") or die $!;
open(my $out, '>' ,'lean.css') or die $!;
my $lineU = q{};
my $lineA = q{};
print $out "$lineU";
while($lineU =<$unused_handle>) {
print $out "$lineU";
#print $out "$lineA"; Line One not printed from All
while($lineA =<$all_handle>) {
if ($lineA =~ m/$lineU/sxm) {
print "Huza!\n";
}
else {
print "No Match\n";
}
}
}
close ($unused_handle);
close ($all_handle);
close ($out);
print "Done!\n";
exit;
下面是我的输入文件的一个示例。
来自未使用的.css 的示例行:
audio, canvas, video
audio:not([controls])
[hidden]
h6
all.css 中的示例行:
article, aside, details, figcaption, figure, footer, header, hgroup, nav, section, summary {
display: block;
}
audio, canvas, video {
display: inline-block;
*display: inline;
*zoom: 1;
}
audio:not([controls]) {
display: none;
height: 0;
}
[hidden] {
display: none;
}