Thread Bestimmte Zeilen aus einer Text-Datei löschen? (13 answers)
Opened by yasukatakaya at 2007-09-17 14:53

renee
 2007-09-17 15:00
#99549 #99549
User since
2003-08-04
14371 Artikel
ModeratorIn
[Homepage] [default_avatar]
Code (perl): (dl )
1
2
3
4
5
6
7
8
9
10
11
12
#!/usr/bin/perl

use strict;
use warnings;
use Tie::File;

my $file = '/path/to/file.ext';
my @unwanted = qw(ICT ProgramVariables);

tie my @lines, 'Tie::File', $file or die $!;
@lines = grep{ my $i = $_; grep{$i =~ /^\Q$_\E/;}@unwanted }@lines;
untie @lines;


ungetestet...
OTRS-Erweiterungen (http://feature-addons.de/)
Frankfurt Perlmongers (http://frankfurt.pm/)
--

Unterlagen OTRS-Workshop 2012: http://otrs.perl-services.de/workshop.html
Perl-Entwicklung: http://perl-services.de/

View full thread Bestimmte Zeilen aus einer Text-Datei löschen?