Horje
what is the use of the tolowercase in java Code Example
what is the use of the tolowercase in java
The toLowerCase() method converts a string to lower case letters. Note: The toUpperCase() method converts a string to upper case letters
islowercase java
// check lowercase or not in java..

public class Test {

   public static void main(String args[]) {
      System.out.println(Character.isLowerCase('c')); //true
      System.out.println(Character.isLowerCase('C')); //false
      System.out.println(Character.isLowerCase('\n')); //false
      System.out.println(Character.isLowerCase('\t')); //false
   }
}




Java

Related
convert array to phone number java Code Example convert array to phone number java Code Example
print zpl from java Code Example print zpl from java Code Example
how to divide coloumns in a text file into seperate arrays in java Code Example how to divide coloumns in a text file into seperate arrays in java Code Example
torres de hanoi java Code Example torres de hanoi java Code Example
how to spilt the string with comma in jaav Code Example how to spilt the string with comma in jaav Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
7