Thread Benutzung der Win7-EnvVar 'ProgramFiles(x86)'
(2 answers)
Opened by peri at 2014-09-09 15:07
du kannst es so schreiben:
my $ProgFilesX86 = "$ENV{'ProgramFiles(x86)'}"; oder so: my $ProgFilesX86 = qq/$ENV{"ProgramFiles(x86)"}/; oder aber in dem fall einfach ohne quotes aussenrum: my $ProgFilesX86 = $ENV{"ProgramFiles(x86)"}; Always code as if the guy who ends up maintaining your code will be a violent psychopath who knows where you live. -- Damian Conway in "Perl Best Practices"
lesen: Wie frage ich & perlintro brian's Leitfaden für jedes Perl-Problem |