Hi
I have and ArrayList<String> and Vector<String>. I want to convert all its element to lowercase without doing individual element. Can someone tell how to do with both or anyone of them...
Thanks in advance.
With best Regards
Printable View
Hi
I have and ArrayList<String> and Vector<String>. I want to convert all its element to lowercase without doing individual element. Can someone tell how to do with both or anyone of them...
Thanks in advance.
With best Regards
Then that's what your original post should have asked. The answer is no.
But more importantly, why do you feel you need this ability? What will your program do that it previously couldn't do if you had a method that did this rather than iterate through the collection and change items one at a time?