Frank Westfield <[EMAIL PROTECTED]> wrote: : I have a string of between 16 and 24 consecutive characters : - no spaces or other non-alphanumeric characters which split : can work on (as I understand split). I need to process each : character and reorder the resulting manipulated characters : into a new string.
You don't understand split(). Read perlfunc 'split'. my @characters = split //, $string_of_characters; 999 out 1000 times what you are doing is unnecessary in perl. It is likely that you are writing perl scripts using the same algorithms you wrote for Java. This is perl. Think in perl, not Java. If you show us what you are actually working on, we might show you how to do it without character arrays. HTH, Charles K. Clarkson -- Mobile Homes Specialist 254 968-8328 -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] <http://learn.perl.org/> <http://learn.perl.org/first-response>