Thread Textdatei auslesen und Ergebnis in Tabelle speichern
(15 answers)
Opened by hilmix at 2010-09-01 15:37
In Excel ungefähr so:
Code (perl): (dl
)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 use Spreadsheet::SimpleExcel; my $xls = Spreadsheet::SimpleExcel->new; $xls->add_worksheet( 'Adressen' ); open my $fh, "<", "adressen.txt" or die $!; local $/ = "jetzt eintragen!\n"; # als paragraphentrenner betrachten chomp(my @p = <$fh>); for my $paragraph (@p) { my (undef, $name, $address) = split /\n/, $paragraph; my ($street, $city, $phone) = split / (?=\d{5} |\(\d{3,5}\) )/, $address, 3; $xls->add_row( [ $name, $street, $city, $phone ] ); } $xls->output_to_file( 'test.xls' ); (ungetestet) Ggf. musst Du noch das Modul Spreadsheet::SimpleExcel installieren 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/ |