NOTE: use Perl; is on undef hiatus. You can read content, but you can't post it. More info will be forthcoming forthcomingly.
All the Perl that's Practical to Extract and Report
Stories, comments, journals, and other submissions on use Perl; are Copyright 1998-2006, their respective owners.
same problem (Score:2, Informative)
"An array slice is exactly the same as a list of individual array elements. Because you can't take a reference to a list, you can't take a reference to an array slice".
Re:same problem (Score:2)
perl -le '$x="abcdef";$y=\substr $x,2,2;$$y="gh";print $x'
(warning ! this behaviour is not documented ! use at your own risk !)
Reply to This
Parent