Help for this page

Select Code to Download


  1. or download this
    if ($frameDesc =~ /(\d+)$/ ) {
       print FH "FTP $1\n";
    } else {
       print FH "FTP 0\n";
    }
    
  2. or download this
    my $num = $frameDesc =~ /(\d+)$/ ? $1 : 0;
    print FH "FTP $num\n";