in reply to Removing nested comments with regexes
while ($string =~ s/^--.*\n$//m) { print "string = $string\nDeleted $1\ncount=$count\n"; $count++; }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Removing nested comments with regexes
by crenz (Priest) on May 19, 2003 at 00:31 UTC | |
|
Re: Re: Removing nested comments with regexes
by Anonymous Monk on May 18, 2003 at 21:12 UTC |