Answers for "string to lower case"

3

tolowercase

const sentence = 'The quick brown fox jumps over the lazy dog.';

console.log(sentence.toLowerCase());
// expected output: "the quick brown fox jumps over the lazy dog."
Posted by: Guest on August-20-2020
3

java how to make a string lowercase

/* to find the lowercase or uppercase of a string, 
* we just .toLowerCase() or .toUpperCase()
*/

public class CaseDemonstration {
  public static void main(String[] args) {
    
   	String testString = "THIS IS AN EXAMPLE OF A STRING";
    String testStringLower = testString.toLowerCase(); // make a string lowercase
    System.out.println(testStringLower); // "this is an example of a string"
    String testStringUpper = testStringLower.toUpperCase(); // make it upper again
    System.out.println(testStringUpper); // "THIS IS AN EXAMPLE OF A STRING"
    
  }
}
Posted by: Guest on June-20-2020
0

lower case of string

str_lower = "A LAZY FOX";
 
 
 
print ("String with lower()", str_lower.lower())
 
 
 
print ("The orgginal string:" ,str_lower)
Posted by: Guest on October-29-2021

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language