I think this is due to#34464, which dropped support for *kwds that were passed to TextFileReader(skip_blank_lines being one of them). Labeling as regression for now. cc@topper-123@WillAyd The fix for this would actually be very simple if the core devs wished to add this back(Adding...
What I'm trying to do is simply to get my program to skip blank lines when reading from a text file. While ((line = in.readLine()) != null) { //do something}.
@@ -18,6 +18,8 @@ my @lines = (); # ingest all lines while (<>) { next if /^\s*$/; # skip blank next if /^--\s+/; # skip comments chomp; push @lines, $_; } 0 comments on commit 4578986 Please sign in to comment. Footer...
@@ -18,6 +18,8 @@ my @lines = (); # ingest all lines while (<>) { next if /^\s*$/; # skip blank next if /^--\s+/; # skip comments chomp; push @lines, $_; } 0 comments on commit 4578986 Please sign in to comment. Footer...