Java toLowerCase() method
Java toLowerCase() method The Java toLowerCase() method returns the string in lowercase letters. In other words, it converts all string characters into lowercase letters. Example Let’s understand the method with the help of a program: package com.testingdocs.stringmethods; public class ExampleProgram { public static void main(String[] args) { String str= "This is a SAMPLE Sentence Example."; […]