首页 > 代码库 > guava中String的CaseFormat

guava中String的CaseFormat

1.各种格式举例

转自官网中的格式与举例。

FormatExample
LOWER_CAMELlowerCamel
LOWER_HYPHENlower-hyphen
LOWER_UNDERSCORElower_underscore
UPPER_CAMELUpperCamel
UPPER_UNDERSCOREUPPER_UNDERSCORE

2.简单实例

常用方法public final String to(CaseFormat format,String str)。将str转换成format格式。

<script src="https://code.csdn.net/snippets/336488.js" type="text/javascript"></script>