Help for this page

Select Code to Download


  1. or download this
    $db_date =~s/[^\d]//g;
    
  2. or download this
    $db_date =~ s/\D//g;
    
  3. or download this
    $db_date =~ s/\D+//g;
    
  4. or download this
    $db_date =~ tr/0-9//cd;
    
  5. or download this
    foreach( glob("$search_local/$missing_file") ){
    if (-e $_)
    
  6. or download this
    goto search2;
    
  7. or download this
    last;