|
Posted by Dr.Ruud on November 1, 2007, 6:47 pm
Please log in for more thread options
Jack schreef:
> if (@content =~ m/<h1>Mr.*<\/h1>/){
> print "here " . $1;
> }
$ perl -le'
# use warnings;
@c = qw(abc de fghi);
if (@c =~ /([bdg0-9])/) {
print $1;
}
'
3
--
Affijn, Ruud
"Gewoon is een tijger."
|