Open SerhEL opened 5 months ago
This allows for an optional comment to be omitted.
# before if (/cutoff\s*=\s*(\d+\.*\d+)\s*#.*$/) { $cutoff = $1; } # after if (/cutoff\s*=\s*(\d+\.*\d+)\s*(?:#.*|)$/) { $cutoff = $1; }
This allows for an optional comment to be omitted.