-
Notifications
You must be signed in to change notification settings - Fork 0
/
doc.go
67 lines (48 loc) · 1.29 KB
/
doc.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
// Copyright (c) 2021 startdusk. All rights reserved.
// Use of this source code is governed by a MIT style
// license that can be found in the LICENSE file.
/*
Package strnaming is used to replace the naming method of strings.
For example:
package main
import (
"fmt"
"github.com/startdusk/strnaming"
)
func main() {
// camel
camel := strnaming.NewCamel()
fmt.Println(camel.Convert("camelcase_key")) // camelcaseKey
}
set preifx
camel.WithPrefix("My")
fmt.Println(camel.Convert("user_id")) // MyuserId
set first char upper
fmt.Println(camel.Convert("user_id")) // userId
camel.WithUpperFirst(true)
fmt.Println(camel.Convert("user_id")) // UserId
set prefix
camel.WithPrefix("My")
fmt.Println(camel.Convert("user_name")) // MyuserName
set customize delimiter
camel.WithDelimiter('-')
fmt.Println(camel.Convert("user-id")) // userId
set cache
camel.WithCache("user_id", "UserID")
fmt.Println(camel.Convert("user_id")) // UserID
set style
package main
import (
"fmt"
"github.com/startdusk/strnaming"
"github.com/startdusk/strnaming/style"
)
func main() {
// camel
camel := strnaming.NewCamel()
camel.WithStyle(style.NewGolang())
fmt.Println(camel.Convert("http_test")) // HTTPTest
fmt.Println(camel.Convert("json_data")) // JSONData
}
*/
package strnaming