> How can I split  a  string of caracters -any but blank spaces-   into
> the individual caracters?

Try something like this:

my @arr = split //, "sometext";

foreach $i (@arr) {

        print "$i\n";
}

-- Brett

Brett W. McCoy
Software Engineer
Broadsoft, Inc.
240-364-5225
[EMAIL PROTECTED]

Reply via email to