Thread print "$split[0Splitfunktion (15 answers)
Opened by Annka at 2006-07-18 13:34

renee
 2006-07-18 14:34
#68194 #68194
User since
2003-08-04
14371 Artikel
ModeratorIn
[Homepage] [default_avatar]
Dann brauchst Du nur die erste Zeile aus der Datei auslesen...

Code: (dl )
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/usr/bin/perl

use strict;
use warnings;

my $first_line = <DATA>;
my $first_col = (split(/,/,$first_line))[0];
print $first_col;

# bei _ _DATA_ _ musst Du die Leerzeichen weglassen
_ _DATA_ _
name,alter,ort
till,19,ffm
maik,20,dortmund
test,44,musterstadt


Das ganze push etc. brauchst Du nicht... Jedenfalls nicht für diese eine Aufgabe.
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 print "$split[0Splitfunktion