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 b39e75bb17 Added ToDelimited 5 年之前
.travis.yml Simpler travis.yml 8 年之前
LICENSE Added license notices of Ian Coleman to each file 5 年之前
README.md Added license notices of Ian Coleman to each file 5 年之前
camel.go Added license notices of Ian Coleman to each file 5 年之前
camel_test.go Added license notices of Ian Coleman to each file 5 年之前
numbers.go Added license notices of Ian Coleman to each file 5 年之前
others.go Added ToDelimited 5 年之前
snake.go Added ToDelimited 5 年之前
snake_test.go Added ToDelimited 5 年之前

README.md

strcase Build Status Coverage

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

Example

x := "AnyKind of_string"
xSnake := strcase.ToSnake(x) // any_kind_of_string
xCamel := strcase.ToCamel(x) // AnyKindOfString