We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
func main(){ fmt.Println(strcase.LowerCamelCase("cfg2_test")) fmt.Println(strcase.UpperCamelCase("cfg2_test")) fmt.Println(strcase.LowerCamelCase(strcase.LowerCamelCase("cfg2_test"))) fmt.Println(strcase.UpperCamelCase(strcase.UpperCamelCase("cfg2_test"))) }
go run ./main.go cfg2Test Cfg2Test cfg2test cfg2test
cfg2Test The first letter of the T in the string should be capitalized
cfg2Test
T
The text was updated successfully, but these errors were encountered:
stoewer
No branches or pull requests
cfg2Test
The first letter of theT
in the string should be capitalizedThe text was updated successfully, but these errors were encountered: