实现函数 ToLowerCase(),该函数接收一个字符串参数 str,并将该字符串中的大写字母转换成小写字母,之后返回新的字符串。 复制代码
示例:
输入: "Hello" 输出: "hello" 输入: "here" 输出: "here" 输入: "LOVELY" 输出: "lovely" 复制代码
思考:
这题比较简单,循环判断字符是大写,就加上32即可。 复制代码
实现:
class Solution { public String toLowerCase(String str) { int num = 'a' - 'A'; char[] array = str.toCharArray(); for (int count = 0; count < str.length(); count++){ if (array[count] >= 'A' && array[count] <= 'Z'){ array[count] += num; } } return new String(array); } }复制代码
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持 码农网
猜你喜欢:- C语言实现字符串英文字母大小写的转换
- mysql查询条件-不区分大小写
- HTTP/2约束Header大小写
- 代码审查实践经验分享:应该是大写还是小写?
- macOS 文件系统的大小写敏感转换
- 在 Linux 命令行中转换大小写
本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。
Parsing Techniques
Dick Grune、Ceriel J.H. Jacobs / Springer / 2010-2-12 / USD 109.00
This second edition of Grune and Jacobs' brilliant work presents new developments and discoveries that have been made in the field. Parsing, also referred to as syntax analysis, has been and continues......一起来看看 《Parsing Techniques》 这本书的介绍吧!