Thread externes File laden & variable ersetzen
(17 answers)
Opened by ack at 2008-05-20 09:30
Wenn $foo global ist, dann geht's:
Code (perl): (dl
)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 #!/usr/bin/perl use strict; use warnings; my $content = do{ local $/; <DATA> }; our $foo = 'hallo'; no strict; $content =~ s/\$(\w+)/${$1}/eg; print $content; __END__ text text $foo text $foo text Während mit "my": Code (perl): (dl
)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 #!/usr/bin/perl use strict; use warnings; my $content = do{ local $/; <DATA> }; my $foo = 'hallo'; no strict; $content =~ s/\$(\w+)/${$1}/eg; print $content; __END__ text text $foo text $foo text Code: (dl
)
1 C:\>perl test.pl 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/ |