Help for this page

Select Code to Download


  1. or download this
    my ($YY,$MM,$DD,$HH,$MI,$SS) ;
    $_ = $line1;
    /^Current time =>\s(\d\d\d\d)(\d\d)(\d\d)\S(\d\d)(\d\d)(\d\d)/sx ;
    
  2. or download this
    if ($line1 =~ /^Current time =>\s(\d\d\d\d)(\d\d)(\d\d)\S(\d\d)(\d\d)(
    +\d\d)/sx ) {
       # assign your captures
    ...
       # warn about failing to match
       warn("No Match: $line1\n");
    }