isLowerCase() code example

Example 1: tolowercase javascript

var str = "Hello World!";
var res = str.toLowerCase();

Example 2: String.toLower() js

const str = "Hello world!";
console.log(str); //Output: "Hello world!"
const String = str.toLowerCase();
console.log(String) //Output: "hello world!"

Example 3: 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
   }
}

Tags:

Java Example