Is it possible to disable or ignore CASE SENSITIVITY in J2ME? how?
like "dog" = "Dog" = "dOg" = "doG"..
nothing seems different between these words. I need to use the words though
Is it possible to disable or ignore CASE SENSITIVITY in J2ME? how?
like "dog" = "Dog" = "dOg" = "doG"..
nothing seems different between these words. I need to use the words though
use String.equalsIgnoreCase for case insensitive comparison between Strings
Probably no longer a relevant piece of information... but note that equalsIgnoreCase() is supported only in CLDC-1.1. If you need CLDC-1.0 compatibility, use String.regionMatches().
Graham.