Merge pull request #6 from bestplay/master

Update snake.go
This commit is contained in:
iancoleman 2018-05-21 15:01:12 +10:00 committed by GitHub
commit 6b1e2b920d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 16 additions and 7 deletions

View File

@ -12,14 +12,21 @@ func ToSnake(s string) string {
n := ""
for i, v := range s {
// treat acronyms as words, eg for JSONData -> JSON is a whole word
nextIsCapital := false
if i + 1 < len(s) {
w := s[i+1]
nextIsCapital = w >= 'A' && w <= 'Z'
nextCaseIsChanged := false
if i+1 < len(s) {
next := s[i+1]
if (v >= 'A' && v <= 'Z' && next >= 'a' && next <= 'z') || (v >= 'a' && v <= 'z' && next >= 'A' && next <= 'Z') {
nextCaseIsChanged = true
}
if i > 0 && v >= 'A' && v <= 'Z' && n[len(n)-1] != '_' && !nextIsCapital {
// add underscore if next letter is a capital
}
if i > 0 && n[len(n)-1] != '_' && nextCaseIsChanged {
// add underscore if next letter case type is changed
if v >= 'A' && v <= 'Z' {
n += "_" + string(v)
} else if v >= 'a' && v <= 'z' {
n += string(v) + "_"
}
} else if v == ' ' {
// replace spaces with underscores
n += "_"

View File

@ -21,6 +21,8 @@ func TestToSnake(t *testing.T) {
[]string{"AnyKind of_string", "any_kind_of_string"},
[]string{"numbers2and55with000", "numbers_2_and_55_with_000"},
[]string{"JSONData", "json_data"},
[]string{"userID", "user_id"},
[]string{"AAAbbb", "aa_abbb"},
}
for _, i := range cases {
in := i[0]