Help for this page

Select Code to Download


  1. or download this
    if ($_ =~ /^xa1/) {
    
  2. or download this
    sub getsub
    {
    ...
            print if /\.subckt $sub/ .. /\.ends/;
        }
    }
    
  3. or download this
    use strict;
    use warnings;
    ...
    }
    
    close $fh or die "Could not close file: $!";
    
  4. or download this
     2:55 >perl 1032_SoPW.pl subs.txt
    line found to be xa1 a s f a1
    ...
     .ends
    
     2:56 >
    
  5. or download this
    while ((my $nxt = readline($fh)) =~ /^\+/)
    
  6. or download this
    while (!eof && (my $nxt = readline($fh)) =~ /^\+/)