Help for this page

Select Code to Download


  1. or download this
     my ($fsObj) = $HostA->find(
           type     => 'DS',
           criteria => { name =>qr/^data_123$/i}, 
               force_sync =>1,        
           );
    
  2. or download this
    
    sub find
    ...
        if (ref($critVal) eq 'Regexp') {
            return ($objectVal =~ $critVal) ? 1 : 0;
    }