What is the shortest way to convert string characters into an array of characters in Perl?
my @arr = split //, "abcd";
my @arr = "abcd" =~ /./sg;
my @arr = unpack '(a)*', 'abcd';
The simplest way is with split with a regex that matches anything.
my @arr = split //, "abcd";