25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
bestplay f2ad438e9e
Update snake.go
6 년 전
.travis.yml Simpler travis.yml 8 년 전
LICENSE Make repository public 8 년 전
README.md Coverage badge 8 년 전
camel.go Apply gofmt to all code 6 년 전
camel_test.go Apply gofmt to all code 6 년 전
numbers.go Treat numbers as word boundaries 6 년 전
snake.go Update snake.go 6 년 전
snake_test.go Treat acronyms as whole words 6 년 전

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