[EMAIL PROTECTED] wrote: > > any modules out there that can sort things such as.. BB10, BB1100,BB11. > I want it to be in this order. BB10,BB11,BB1100.
Perl's built-in sort does that: $ perl -le'@x = qw[BB11 BB10 BB1100]; print for @x; print; print for sort @x' BB11 BB10 BB1100 BB10 BB11 BB1100 Unless you are not describing the problem correctly. John -- use Perl; program fulfillment -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] <http://learn.perl.org/> <http://learn.perl.org/first-response>