
Zhris
User
Jul 19, 2012, 12:13 PM
Views: 1998
|
|
Re: [demisheep] Trying to stem having issue with array
|
|
|
Hi, 'ARRAY(0xc99b3c)' is Perl's way of converting a references into a string. You will need to de-reference it in order to use it in an array context:
{ local $" = "\n"; # optional array interpolation separator. print "@$stemmed_words_anon_array"; } Chris
(This post was edited by Zhris on Jul 19, 2012, 12:16 PM)
|