Thread variablen (7 answers)
Opened by Tapir at 2009-03-21 19:29

Gast tapir
 2009-03-23 16:52
#119724 #119724
Gibt es hier eine Möglichkeit, dass das "\n" nicht gedruckt wird, sondern als "neue Zeile" interpretiert wird?

configfile:
Code: (dl )
ungueltig = " - Ungültige Eingabe -\n"

Code (perl): (dl )
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/usr/bin/perl
use warnings;
use strict;
use Config::General;


my $configfile = 'configfile';

my $conf = new Config::General(
                -ConfigFile      => $configfile,
                -InterPolateVars => 1,
                -InterPolateEnv  => 1,
                );
my %config = $conf->getall;


print $config{ungueltig};

View full thread variablen