--- Pedro A Reche Gallardo <[EMAIL PROTECTED]> wrote:
> Hi all,
> How can I split  a  string of caracters -any but blank spaces-   into
> the individual caracters?
> Cheers

I'd say 

 @chars = split /\s*/, $string;

That will split between characters that have any number of spaces
between them -- including zero. Thus, "ab c" would split into 
 ('a','b','c').

__________________________________________________
Do You Yahoo!?
Get personalized email addresses from Yahoo! Mail - only $35 
a year!  http://personal.mail.yahoo.com/

Reply via email to