in reply to Text manipulation with perl

I'm not the best with RegEx's but this would probably work
foreach my $line(@all_lines) { $line =~ s/-//g }
or if you only want the one at the beginning of the line
$line =~ s/^-//g