ooni-probe-cli/utils/strcase
2018-09-10 16:28:54 +02:00
..
camel_test.go vendor strcase from: 3605ed457b 2018-09-10 16:28:54 +02:00
camel.go vendor strcase from: 3605ed457b 2018-09-10 16:28:54 +02:00
LICENSE vendor strcase from: 3605ed457b 2018-09-10 16:28:54 +02:00
numbers.go vendor strcase from: 3605ed457b 2018-09-10 16:28:54 +02:00
README.md vendor strcase from: 3605ed457b 2018-09-10 16:28:54 +02:00
snake_test.go vendor strcase from: 3605ed457b 2018-09-10 16:28:54 +02:00
snake.go vendor strcase from: 3605ed457b 2018-09-10 16:28:54 +02:00

strcase

Godoc Reference Build Status Coverage

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

Example

s := "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