Thread Konkatenation (9 answers)
Opened by Henri at 2015-08-03 00:42

bianca
 2015-08-03 07:31
#181710 #181710
User since
2009-09-13
7016 Artikel
BenutzerIn

user image
Schuss ins Blaue ohne Kenntnis der Datenstruktur die nämlich noch vor der Konkatenation das viel Wichtigere ist.
Code (perl): (dl )
1
2
3
4
5
6
7
8
9
#!/usr/bin/perl
use strict;
use warnings;

my $name = 'toto, tata, titi, tete, tutu';
my $value = '34, 35, 30, 40, 23';
my @n = split /, /,$name;
my @v = split /, /,$value;
for (my $z = 0; $z < scalar @n; $z ++) { print "$n[$z] $v[$z]\n" }

Last edited: 2015-08-03 07:33:01 +0200 (CEST)
10 print "Hallo"
20 goto 10

View full thread Konkatenation