On 6/27/19 11:05 AM, Thomas Lamprecht wrote: > On 6/27/19 10:43 AM, Dominik Csapak wrote: >> + $line =~ s/^;.*$//; > > above should be > > > $line =~ s/^\s*;.*$//; > > or? > the line above that line > $line =~ s/^\s+//; already filters white space at the start, so i saw no need to do this