- or download this
my $line_in = <<EOT;
<?xml-stylesheet href="perl1.css" type="text/css"?>
<link href="//www.perl.org/css/perl1.css" rel="stylesheet">
<link href="/css/perl.css" rel="stylesheet">
EOT
- or download this
my @ss = $line_in =~ m{<(.*?)stylesheet(.*?)>}gis;
- or download this
$1 $2
|----| |--------------------------------|
...
$1 $2
|-----------------------------| |
<link href="/css/perl.css" rel="stylesheet">
- or download this
my @ss = $line_in =~ m/(href="[^"]+")/gi;
print "$_\n" for @ss;
...
# href="perl1.css"
# href="//www.perl.org/css/perl1.css"
# href="/css/perl.css"
- or download this
my @ss = $line_in =~ m/<(?=[^>]*stylesheet).*(href="[^">]+")/gis;