An open API service indexing awesome lists of open source software.

https://github.com/vetcher/go-case

Package to convert names, titles and sequences to snake_case, CamelCase and some other.
https://github.com/vetcher/go-case

camelcase golang snake-case

Last synced: 4 months ago
JSON representation

Package to convert names, titles and sequences to snake_case, CamelCase and some other.

Awesome Lists containing this project

README

          

# go-case
Package to convert names, titles and sequences to snake_case, CamelCase and some other.

```go
import (
"fmt"

"github.com/vetcher/go-case"
)

func main() {
s := "some string to convert"
fmt.Println(go_case.ToCamelCase(s))

// Output:
// SomeStringToConvert
}
```