当前位置:网站首页>Utility class functions (continuous update)
Utility class functions (continuous update)
2020-11-06 21:45:00 【Architects who can drive】
/**
* Initial lowercase method
*/
private static String lowerFirst(String str) {
char[] chars = str.toCharArray();
if('A' <= chars[0] && chars[0] <= 'Z') {
chars[0] += 32;
}
return String.valueOf(chars);
}
版权声明
本文为[Architects who can drive]所创,转载请带上原文链接,感谢
边栏推荐
- An article will introduce you to CSS3 background knowledge
- Markdown tricks
- jenkins安装部署过程简记
- ES6 learning notes (2): teach you to play with class inheritance and class objects
- 2020-09-09:裸写算法:两个线程轮流打印数字1-100。
- Some operations kept in mind by the front end foundation GitHub warehouse management
- Those who have worked in China for six years and a million annual salary want to share these four points with you
- Js字符串-String字符串对象方法
- Summary of common SQL statements
- Zero basis to build a web search engine of its own
猜你喜欢

The legality of IPFs / filecoin: protecting personal privacy from disclosure

ado.net and asp.net The relationship between

git远程库回退指定版本

#JVM 类加载机制

An article taught you to download cool dog music using Python web crawler

2020-08-18:介绍下MR过程?

Summary of front-end interview questions (C, s, s) that front-end engineers need to understand (2)

递归、回溯算法常用数学基础公式

Interviewer: how about shardingsphere

Take you to learn the new methods in Es5
随机推荐
image operating system windows cannot be used on this platform
谷歌浏览器实现视频播放加速功能
The role of theme music in games
How to prepare for the system design interview
An article will take you to understand CSS alignment
ES中删除索引的mapping字段时应该考虑的点
Python basic data type -- tuple analysis
ES6 learning notes (5): easy to understand ES6's built-in extension objects
Exclusive interview of guests at | 2020 PostgreSQL Asia Conference: Wang Tao
意派Epub360丨你想要的H5模板都在这里,电子书、大转盘、红包雨、问卷调查……
The native API of the future trend of the front end: web components
2020-08-15:什么情况下数据任务需要优化?
消防器材RFID固定资产管理系统
2020-08-29:进程线程的区别,除了包含关系之外的一些区别,底层详细信息?
2020-08-20:GO语言中的协程与Python中的协程的区别?
Can you do it with only six characters?
An article will take you to understand CSS3 fillet knowledge
上海巨微专用蓝牙广播芯片
2020-08-24:什么是小文件?很多小文件会有什么问题?很多小文件怎么解决?(大数据)
2020-08-30:裸写算法:二叉树两个节点的最近公共祖先。