Thread Formatausgabe in Variable: und nicht auf STDOUT (8 answers)
Opened by macMeck at 2005-11-26 00:20

ptk
 2005-11-26 18:07
#60430 #60430
User since
2003-11-28
3645 Artikel
ModeratorIn
[default_avatar]
Mit modernen Perls kann man viel leichter einen Filehandle in eine Variable umleiten:
Code: (dl )
1
2
open(my $fh, ">", \$variable);
print $fh "foo"; # "foo" steht jetzt in $variable

Vielleicht funktioniert das auch mit Forms.

View full thread Formatausgabe in Variable: und nicht auf STDOUT