Help for this page

Select Code to Download


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