Help for this page

Select Code to Download


  1. or download this
    if ( $line =~ /[^\s]XY/ ) { ... }
    
  2. or download this
    while ( <FILE> ) {
        next if /^\s/;
        # process lines without leading whitespace here ...
    }