- or download this
my $string = "--This is a comment\nNot a comment\n" .
"--This Comment continues here\nNOT a comment";
- or download this
my $string = "...";
$string =~ s/(^|\n)--[^\n]+//g;
print "No comments: $string\n";
- or download this
my $string = "...";
...
$string =~ s/^--[^\n]+\n//;
print "No comments: $string\n";