You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Ma_124 22125ab701 Swapped Ma124 to iancoleman in all badges for pull request 6 vuotta sitten
.travis.yml Simpler travis.yml 8 vuotta sitten
LICENSE Added license notices of Ian Coleman to each file 6 vuotta sitten
README.md Swapped Ma124 to iancoleman in all badges for pull request 6 vuotta sitten
camel.go Added doc and kebab 6 vuotta sitten
camel_test.go Added license notices of Ian Coleman to each file 6 vuotta sitten
numbers.go Added license notices of Ian Coleman to each file 6 vuotta sitten
snake.go Added doc and kebab 6 vuotta sitten
snake_test.go Added ToDelimited 6 vuotta sitten

README.md

strcase

Godoc Reference Build Status Coverage

strcase is a go package for converting string case to snake case or camel case.

Example

x := "AnyKind of_string"
Function Result
ToSnake(s) any_kind_of_string
ToScreamingSnake(s) ANY_KIND_OF_STRING
ToKebab(s) any-kind-of-string
ToScreamingKebab(s) ANY-KIND-OF-STRING
ToDelimited(s, '.') any.kind.of.string
ToScreamingDelimited(s, '.') ANY.KIND.OF.STRING
ToCamel(s) AnyKindOfString
ToLowerCamel(s) anyKindOfString