gpt4 book ai didi

java - 在Java中将字符串从蛇大小写转换为 Camel 大小写

转载 作者:IT老高 更新时间:2023-10-28 21:02:03 28 4
gpt4 key购买 nike

如何在 Java 中将蛇形大小写转换为 Camel 形大小写?

输入:“input_in_snake_case”

输出:“InputInSnakeCase”

最佳答案

Guava通过其CaseFormat 支持这一点类

import com.google.common.base.CaseFormat;


public class StackOverflow25680258 {

public static void main(String[] args) {
System.out.println(CaseFormat.UPPER_UNDERSCORE.to(CaseFormat.UPPER_CAMEL, "input_in_snake_case"));
}

}

输出

InputInSnakeCase

关于java - 在Java中将字符串从蛇大小写转换为 Camel 大小写,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25680258/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com