- or download this
#!perl
use strict;
...
{
print "<0>" . $line ."\n";
}
- or download this
<0>some
.
.
<0>some
<0>some
- or download this
#!perl
use strict;
...
print "<1>" . $line ."\n";
}
- or download this
<1>some
<1>random
...
<1>to
<1>test
<1>this
- or download this
while ($data =~ m/^(.*)$/gm)
{
print "<2>" . $1."\n";
}