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