HOME      BLOG       FORUMS      CONTACT       ABOUT

Converts character value to lower case.

The toLowerCase method of Character class us used for converting the given character to lowercase.

public class CharWrapper {
	public static void main(String[] args) {
		char c = 'A';
		char value = Character.toLowerCase(c);
		System.out.println(value);
	}
}

Share

Tags: , , , , ,


You can follow any responses to this entry through the RSS 2.0 feed. You can leave a response, or trackback from your own site.

AddThis Social Bookmark Button

Leave a Reply