String Question 6
Question 6. Write a Program to convert string to lowercase.
Program-
class Solution { static String toLower(String S) { String s = S.toLowerCase(); return s; } } |
Home / Java Practice Question / String Question 6
Question 6. Write a Program to convert string to lowercase.
Program-
class Solution { static String toLower(String S) { String s = S.toLowerCase(); return s; } } |