From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of [EMAIL PROTECTED] Sent: 19 May 2006 16:10 To: [email protected] Subject: No-brainer, pressed for time
> Wizards, > > I know this is a no-brainer, but like I said... > > I'm sure there's something somewhere that will handle merging a sorted list of text into a larger sorted list > of text, I'm just having a case of the lazy-thumbs today. Anybody care to point me in the right direction? > Here's what I'm trying to do: > > @list1 = qw( artist awful billy blunder) > @list2 = qw( attitude blatherskite) > > # something magical happens, and the contents of @list1 are now > # 'artist', 'attitude', 'awful', 'billy', 'blatherskite', 'blunder' Did you not think of trying CPAN? http://search.cpan.org/search?query=merge&mode=all But surely you tried the obvious approach, though: my $list3 = sort @list1, @list2; -- Brian Raven ================================= Atos Euronext Market Solutions Disclaimer ================================= The information contained in this e-mail is confidential and solely for the intended addressee(s). Unauthorised reproduction, disclosure, modification, and/or distribution of this email may be unlawful. If you have received this email in error, please notify the sender immediately and delete it from your system. The views expressed in this message do not necessarily reflect those of Atos Euronext Market Solutions. L'information contenue dans cet e-mail est confidentielle et uniquement destinee a la (aux) personnes a laquelle (auxquelle(s)) elle est adressee. Toute copie, publication ou diffusion de cet email est interdite. Si cet e-mail vous parvient par erreur, nous vous prions de bien vouloir prevenir l'expediteur immediatement et d'effacer le e-mail et annexes jointes de votre systeme. Le contenu de ce message electronique ne represente pas necessairement la position ou le point de vue d'Atos Euronext Market Solutions. _______________________________________________ ActivePerl mailing list [email protected] To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs
