类 StringUtil
java.lang.Object
com.jeeplus.devtools.util.StringUtil
字符串工具类, 继承org.apache.commons.lang3.StringUtils类
- 版本:
- 2021-05-22
- 作者:
- jeeplus
-
构造器详细资料
-
StringUtil
public StringUtil()
-
-
方法详细资料
-
abbr2
-
getRemoteAddr
获得用户远程地址 -
toCamelCase
驼峰命名法工具- 返回:
- toCamelCase(" hello_world ") == "helloWorld" toCapitalizeCamelCase("hello_world") == "HelloWorld" toUnderScoreCase("helloWorld") = "hello_world"
-
toCapitalizeCamelCase
驼峰命名法工具- 返回:
- toCamelCase(" hello_world ") == "helloWorld" toCapitalizeCamelCase("hello_world") == "HelloWorld" toUnderScoreCase("helloWorld") = "hello_world"
-
toUnderScoreCase
驼峰命名法工具- 返回:
- toCamelCase(" hello_world ") == "helloWorld" toCapitalizeCamelCase("hello_world") == "HelloWorld" toUnderScoreCase("helloWorld") = "hello_world"
-