in reply to
Re^5: deleting special lines from files
in thread
deleting special lines from files
I thought that /^\;
\;
\{2\}/ would work but it doesn't
Comment on
Re^6: deleting special lines from files
Replies are listed 'Best First'.
Re^7: deleting special lines from files
by
theroninwins
(Friar)
on Sep 02, 2004 at 13:57 UTC
Finally I got it. It is :
my @data = grep { !/\S+;;/ } <SCAN>
[reply]
[d/l]
In Section
Seekers of Perl Wisdom