Something I keep doing is removing comments from a file as I process it. I was was wondering if there a module to do this.
Sort of code I keep writing time and again is
while(<>) {
s/#.*// ;
next if /^ \s+ $/x ;
**** do something useful here ****
}
Edit Just to clarify, the input is not Perl. It is a text file of my own making that might have data I want to process in some way or other. I want to beable to place comments that are ignored by my programs
s###,m##, andqw##. – Greg Bacon Apr 10 '10 at 18:59say "my favorite irc channel is #perl". – jrockway Apr 11 '10 at 9:01