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
Loop through the List and transform each element to lower case (not sure what you mean by 'without doing individual element' - how would you convert every element without doing each element?)