Thread Matrix: Matrix erstellen (37 answers)
Opened by Gast at 2004-08-03 17:13

renee
 2004-08-04 13:31
#85306 #85306
User since
2003-08-04
14371 Artikel
ModeratorIn
[Homepage] [default_avatar]
@Tim78: Herzlich Willkommen in der Perl-Community.de!

wie sind denn die Datensätze getrennt??

Hier mal ein Beispielcode
Code: (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
#! /usr/bin/perl

use strict;
use warnings;

my $n_file = 'path/to/file_with_number.txt';
my $d_file = 'path/to/file_with_diameters.txt';
my $out = '/path/to/outfile.dat'

my @numbers = ();
my @diameters = ();

# anzahl einlesen;
open(R_N,"<$n_file") or die $!;
my @lines_n = <R_N>;
close R_N;
chomp(@lines_n);
foreach(@lines_n){
push(@numbers,split(/ /,$_));
}

# durchmesser einlesen
open(R_D,"<$d_file") or die $!;
my @lines_d = <R_D>;
close R_D;
chomp(@lines_d);
foreach(@lines_d){
push(@diameters,split(/ /,$_));
}

open(W_FILE,">$out") or die $!;
for(0..$#numbers){
print $numbers[$_]," ",$diameters[$_];
}
close W_FILE;
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 Matrix: Matrix erstellen