On Nov 30, 2003, at 1:45 AM, B. Rothstein wrote:

If I have a scalar variable that itslef is a list of names, for example
$names = 'john, jack, albert, timmy"; is it possible, and if so how can it
be done to separate the individual names from the list in their scalar form
in order to create a new list of sorted names. thanks for any suggestions.

my @names = sort split /, ?/, $names;


G'Night and good luck.

James


-- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]



Reply via email to