yitzle wrote:
> Is there some way to convert it (a string/scalar) to an array?

Is this what you mean?

my $string = 'ABCDEF';
my @string = split '', $string;

Rob

-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
http://learn.perl.org/


Reply via email to