You could use the toUpperCase()/toLowerCase() methods ang and a loop to convert the strings before the sort method.
~noel
-----Original Message-----
From: Wade Steele <wsteele3@csc.com>
To: ajug-members@www.ajug.org
Date: Wed, 03 Jul 2002 11:29:04 -0400
Subject: sorting a collection
As you know, the sort() method will
sort arays like this
Acorns
Bees
Birds
Cows
apples
rocks
I need to sort my arrays like this
Acorns
apples
Bees
Birds
Cows
rocks
Any idea how I can do this? I need
it to be completely case
insensitive.
Thanks,
Wade