# Functions
PkgName returns the package name from a filepath with a package qualifier.
No description provided by the author
Kebab 转换驼峰字符串为用'-'分隔的字符串 example2: delimiter = '-' initialisms = DefaultInitialisms IdCom -> id-com Idcom -> idcom nameIdCom -> name-id-com nameIdcom -> name-idcom.
LowTitle 首字母小写 see strings.Title.
PascalCase returns the CamelCased name.
PkgName returns the package name from a Go path with a package qualifier.
PkgQualifier returns the package name from a Go identifier with a package qualifier.
SmallCamelCase to small camel case string id_com -> idCom idcom -> idcom name_id_com -> nameIdCom name_idcom -> nameIdcom.
SnakeCase 转换驼峰字符串为用'_'分隔的字符串 example2: delimiter = '_' initialisms = DefaultInitialisms IdCom -> id_com Idcom -> idcom nameIdCom -> name_id_com nameIdcom -> name_idcom.
SplitCase 转换驼峰字符串为用delimiter分隔的字符串 example: delimiter = '_' 空字符 -> 空字符 HelloWorld -> hello_world Hello_World -> hello_world HiHello_World -> hi_hello_world IdCom -> id_com Idcom -> idcom nameIdCom -> name_id_com nameIdcom -> name_idcom.
No description provided by the author
No description provided by the author
# Constants
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author