Help for this page

Select Code to Download


  1. or download this
    for ( @FileArray ) {
        open FILE or die $!;
    
  2. or download this
    while ( <FILE> ) {
      $in = $_
    
  3. or download this
    while ( $in = <FILE> ) {
        chomp $in
    
  4. or download this
    if ( $line =~ /^1.*?MSC.NASTRAN.*?PAGE/ ) {
        my $name = <FILE>;
    ...
        $loadname = $name if ($name !~ /^\s*$/ );
        next;
    }
    
  5. or download this
    if ( $line =~ m/^0\s+(\S*?)\s+(SUBCASE)|(SUBCOM)|(SYM\b)|(SYMCOM)|(REP
    +CASE)/ ) {
        $loadname = $1 if $1;
        $type = $+;
        next;
    }
    
  6. or download this
    my $failure_indices_line = "F A I L U R E ....... ( Q U A D )";
    ...
    
    if ( $in eq $failure_indices_line ) {
    
  7. or download this
    if ( $in =~ /[\d.]+/ ) {