Thread Logik Problem
(8 answers)
Opened by havi at 2008-06-24 14:15
Also sowas?
Code (perl): (dl
)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 #!/usr/bin/perl # vi:ts=4 sw=4 et: use strict; use warnings; #http://board.perl-community.de/thread/12073/#MSG7 #> global variables #> ---------------------------------------------------------------------------- my $last_num = undef; #> main script #> ---------------------------------------------------------------------------- while ( my $line = <DATA> ) { chomp $line; if ( $line =~ m{^\s*$} ) { print "--8<--\n"; next; } my ( $code, $num, $name ) = split /\|/, $line; if ( defined $last_num ) { if ( $code ne '01' and $num ne $last_num ) { printf "%s|%s|%s\n", $code, $num, $name; } } $last_num = $num; } #> sub routines #> ---------------------------------------------------------------------------- __DATA__ 20|2-114-560|Mayer 01|2-114-560|Mayer 01|2-010-708|Huber 01|2-011-044|Bauer 10|2-147-169|Mayer 20|2-147-554|Bauer 01|2-147-695|Huber 10|2-147-169|Mayer 20|2-147-554|Bauer 30|2-148-554|Muster 01|2-147-695|Huber meine Beiträge: I.d.R. alle Angaben ohne Gewähr und auf Linux abgestimmt!
Die Sprache heisst Perl, nicht PERL. - Bitte Crossposts als solche kenntlich machen! |