Advertisement
screen12345

perl script multiline replace without slurping entire file

Jun 28th, 2011
289
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Perl 1.34 KB | None | 0 0
  1. sub deskriptoren {
  2.  
  3. open my $in, "<export.txt" or die "Cannot find 'export.txt': $!\n";
  4. open my $out, ">LIDOS_export_erweitert.txt" or die "Cannot create 'LIDOS_export_erweitert.txt': $!\n";
  5.  
  6. print "\n\tExpand Deskriptor-Chains.\n";
  7.  
  8. while(my $line = <$in>) {
  9.     print $out $line;
  10.  
  11.     if( $line =~ m{^\+Deskriptoren:} ) {                       
  12.         my($section, $next_line) = _read_to_next_section($in); 
  13.                                                                
  14.         print $out _munge_description($section);
  15.        
  16.         print $out $next_line;
  17.         }
  18.     }
  19. close $in;
  20. close $out;
  21. undef $in;
  22. undef $out;
  23. print "\t\tCompleted.\n\n";
  24.  
  25.  
  26. sub _read_to_next_section {
  27.         my $in = shift;
  28.    
  29.         my $section = '';
  30.         my $line = '';
  31.         while( $line = <$in> ) {
  32.             last if $line =~ /^ \+ /x;
  33.             $section .= $line;
  34.             }
  35.         # When reading the last section, there might not be a next line
  36.         # resulting in $line begin undefined.
  37.         $line = '' if !defined $line;
  38.         return($section, $line);
  39.         }           # End of "_read_to_next_section"-subroutine
  40.  
  41.  
  42. sub _munge_description {
  43.     my $description = shift;
  44.    
  45.     $C+=$description =~ s#foo#bar#gm;
  46.     $C+=$description =~ s#((?:-(?!PRC).+\n)*)-(Cultural Revolution|bla|blo|blu)\n((?:-(?!PRC).+\n)*)#${1}-PRC\n-${2}\n${3}#;
  47.     # a _lot_ more similar regexes.
  48.    
  49.     return $description;
  50. }           # End of "munge_description"-subroutine
  51. }           # End of "Deskriptoren"-subroutine
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement