我需要更改字符串:下划线+小写=大写(和相反)

my_name -> myName

是否有图书馆或其他东西可以帮助解决这个问题?

最佳答案

您可以使用Google CaseFormat class's LOWER_UNDERSCORE Guava:

CaseFormat.LOWER_UNDERSCORE.to(CaseFormat.LOWER_CAMEL, "my_name")

关于java - 需要将lowercase_underscore字符串更改为camelCase,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/17061300/

10-09 03:16