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.

123456789101112
  1. strcase [![Build Status](https://travis-ci.org/Ma124/strcase.svg)](https://travis-ci.org/Ma124/strcase) [![Coverage](http://gocover.io/_badge/github.com/Ma124/strcase?0)](http://gocover.io/github.com/Ma124/strcase)
  2. =======
  3. strcase is a go package for converting string case to [snake case](https://en.wikipedia.org/wiki/Snake_case) or [camel case](https://en.wikipedia.org/wiki/CamelCase).
  4. # Example
  5. ```
  6. x := "AnyKind of_string"
  7. xSnake := strcase.ToSnake(x) // any_kind_of_string
  8. xCamel := strcase.ToCamel(x) // AnyKindOfString
  9. ```