- or download this
$checks{'data'} =~ s/\s+/ /g;
# remove leading and trailing blanks
$checks{'data'} =~ s/^\s+//;
$checks{'data'} =~ s/\s+$//;
- or download this
$checks{'regex'} = $checks{'regex'} ? $checks{'regex'} : $default;
- or download this
$checks{'regex'} ||= $default;
- or download this
exists($checks{'regex'}) or $checks{'regex'} = $default;