com.yishuifengxiao.common.tool.utils.StringUtil Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of common-tool Show documentation
Show all versions of common-tool Show documentation
本工具包主要集成了目前在项目开发过程中个人经常会使用到的一些工具类,对工具类进行了一下简单的封装
/**
*
*/
package com.yishuifengxiao.common.tool.utils;
/**
* 字符工具类
*
* @author yishui
* @Date 2019年3月8日
* @version 1.0.0
*/
public class StringUtil {
/**
* 将字符串的首字母变为小写的
*
* @param s
* 字符串
* @return
*/
public static String toLowerCaseFirstOne(String s) {
if (Character.isLowerCase(s.charAt(0)))
return s;
else
return (new StringBuilder()).append(Character.toLowerCase(s.charAt(0))).append(s.substring(1)).toString();
}
/**
* 将字符串的首字母变为大写的
*
* @param s
* 字符串
* @return
*/
public static String toUpperCaseFirstOne(String s) {
if (Character.isUpperCase(s.charAt(0)))
return s;
else
return (new StringBuilder()).append(Character.toUpperCase(s.charAt(0))).append(s.substring(1)).toString();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy