package
0.0.0-20241217055803-fe5de0102ffb
Repository: https://github.com/hilaoyu/go-utils.git
Documentation: pkg.go.dev

# README

copy form github.com/iancoleman/strcase

Example

s := "AnyKind of_string"
FunctionResult
ToSnake(s)any_kind_of_string
ToSnakeWithIgnore(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, '.', '', true)ANY.KIND.OF.STRING
ToScreamingDelimited(s, '.', ' ', true)ANY.KIND OF.STRING
ToCamel(s)AnyKindOfString
ToLowerCamel(s)anyKindOfString