Thread String durch Referenz ersetzen (7 answers)
Opened by bloonix at 2007-02-08 19:50

bloonix
 2007-02-08 19:50
#74187 #74187
User since
2005-12-17
1615 Artikel
HausmeisterIn
[Homepage]
user image
Hallo Community,

wie kann ich einen String durch eine Referenz ersetzen?

Beispiel:

Code: (dl )
1
2
3
4
5
6
7
8
9
10
11
12
my $foo    = ();
my $bar    = \$foo;
my $string = 'hello <--REPLACE-->';

# das klappt natürlich nicht
$string =~ s/<--REPLACE-->/$bar/;

$foo = 'world';
print $string, "\n";

$foo = 'community';
print $string, "\n";


Als Ausgabe erwarte ich

hello world
hello community


Wie kann ich sowas realisieren?

Gruss,
opi
What is a good module? That's hard to say.
What is good code? That's also hard to say.
One man's Thing of Beauty is another's man's Evil Hack.

View full thread String durch Referenz ersetzen