当前位置:网站首页>实用工具类函数(持续更新)
实用工具类函数(持续更新)
2020-11-06 21:45:00 【会开车的架构师】
/**
* 首字母小写方法
*/
private static String lowerFirst(String str) {
char[] chars = str.toCharArray();
if('A' <= chars[0] && chars[0] <= 'Z') {
chars[0] += 32;
}
return String.valueOf(chars);
}
版权声明
本文为[会开车的架构师]所创,转载请带上原文链接,感谢
https://my.oschina.net/u/4629483/blog/4529696
边栏推荐
- An article will take you to understand SVG gradient knowledge
- Use modelarts quickly, zero base white can also play AI!
- What knowledge do Python automated testing learn?
- 理解格式化原理
- 【應用程式見解 Application Insights】Application Insights 使用 Application Maps 構建請求鏈路檢視
- 【ElasticSearch搜索引擎】
- Multi robot market share solution
- In depth to uncover the bottom layer of garbage collection, this time let you understand her thoroughly
- Axios learning notes (2): easy to understand the use of XHR and how to package simple Axios
- It's time for your financial report to change to a more advanced style -- financial analysis cockpit
猜你喜欢
2020年数据库技术大会助力技术提升
ERD-ONLINE 免费在线数据库建模工具
华为云微认证考试简介
For a while, a dynamic thread pool was created, and the source code was put into GitHub
Live broadcast preview | micro service architecture Learning Series live broadcast phase 3
Use modelarts quickly, zero base white can also play AI!
【自学unity2d传奇游戏开发】如何让角色动起来
The importance of big data application is reflected in all aspects
Behind the first lane level navigation in the industry
Even liver three all night, jvm77 high frequency interview questions detailed analysis, this?
随机推荐
Digital city responds to relevant national policies and vigorously develops the construction of digital twin platform
An article will take you to understand CSS alignment
Helping financial technology innovation and development, atfx is at the forefront of the industry
【学习】接口测试用例编写和测试关注点
ES6 learning notes (4): easy to understand the new grammar of ES6
How about small and medium-sized enterprises choose shared office?
前端未來趨勢之原生API:Web Components
Humor: hacker programming is actually similar to machine learning!
统计项目代码行数
华为云微认证考试简介
The legality of IPFs / filecoin: protecting personal privacy from disclosure
An article takes you to understand CSS gradient knowledge
代码生成器插件与Creator预制体文件解析
文件过多时ls命令为什么会卡住?
【:: 是什么语法?】
行为型模式之解释器模式
Vue communication and cross component listening state Vue communication
MongoDB与SQL常用语法对应表
Flink's datasource Trilogy 2: built in connector
一路踩坑,被迫聊聊 C# 代码调试技巧和远程调试