Thread Elegante Syntax für Hash-Def (11 answers)
Opened by bianca at 2010-03-27 12:41

renee
 2010-03-27 13:14
#135350 #135350
User since
2003-08-04
14371 Artikel
ModeratorIn
[Homepage] [default_avatar]
Unabhängig vom Problem:

Das hier:
Code (perl): (dl )
1
2
3
4
        $line =~ s/\t\t/\t/g while $line =~ /\t\t/;
        (
                ...
        ) = split /\t/,$line;


würde ich eher
Code (perl): (dl )
( ... ) = split /\t+/, $line;
schreiben
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 Elegante Syntax für Hash-Def