Implement function ToLowerCase() that has a string parameter str, and returns the same string in lowercase.
Example 1:
Input: “Hello”
Output: “hello”
Example 2:
Input: “here”
Output: “here”
Example 3:
Input: “LOVELY”
Output: “lovely”
题意:大写转小写
知识点:
toLowerCase()大写转小写toUpperCase()小写转大写
class Solution {
public String toLowerCase(String str) {
return str.toLowerCase();
}
}
本文介绍了一种简单的方法来将字符串中的所有大写字母转换为小写。通过使用内置的toLowerCase()函数,可以轻松地完成这一转换过程。示例包括Hello转换为hello,LOVELY转换为lovely等。
374

被折叠的 条评论
为什么被折叠?



