in reply to URL-String-concatenation within Perl [applying to a loop]
String concatenation? That's easy:
'string literal' . $foo
qq{string literal$foo}
join('', 'string literal', $foo)
Now, why don't you try to make that first snippet of code actually compile?
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: URL-String-concatenation within Perl [applying to a loop]
by Perlbeginner1 (Scribe) on Nov 27, 2010 at 19:04 UTC |