Thread Separator mittels Variable??? (10 answers)
Opened by Gast at 2004-07-23 11:20

renee
 2004-07-23 11:27
#84800 #84800
User since
2003-08-04
14371 Artikel
ModeratorIn
[Homepage] [default_avatar]
Das hier funktioniert bei mir:
Code: (dl )
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#! /usr/bin/perl

use strict;
use warnings;

my $delim = '\|';
my $string = qq~test|dies|ist|ein~;

fill_table($string,"",$delim);

sub fill_table
{
my $string = $_[0]; # Dateiname
my $src_path = $_[1]; # Pfad zur Datei
my $delimiter = $_[2]; # Separator

my @Bom = split(/$delimiter/, $string);
print $_,"\n" for(@Bom);
}
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 Separator mittels Variable???