in reply to Re: selecting characters from a variable
in thread selecting characters from a variable

You still need to give a pattern to split on which matches the null string (// or '') to split to characters; omitting both the pattern and what to split splits $_ on whitespace (at least in list context; in scalar context it splits $_ on whitespace into @_ and you'll get griped at as it's deprecated behavior). See the docs for split for more details.</pedant>