2018-07-04 01:52:40 +08:00
/ *
* The MIT License ( MIT )
*
* Copyright ( c ) 2015 Ian Coleman
2018-07-04 02:24:52 +08:00
* Copyright ( c ) 2018 Ma_124 , < github . com / Ma124 >
2018-07-04 01:52:40 +08:00
*
* Permission is hereby granted , free of charge , to any person obtaining a copy
* of this software and associated documentation files ( the "Software" ) , to deal
* in the Software without restriction , including without limitation the rights
* to use , copy , modify , merge , publish , distribute , sublicense , and / or sell
* copies of the Software , and to permit persons to whom the Software is
* furnished to do so , Subject to the following conditions :
*
* The above copyright notice and this permission notice shall be included in all
* copies or Substantial portions of the Software .
*
* THE SOFTWARE IS PROVIDED "AS IS" , WITHOUT WARRANTY OF ANY KIND , EXPRESS OR
* IMPLIED , INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY ,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT . IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM , DAMAGES OR OTHER
* LIABILITY , WHETHER IN AN ACTION OF CONTRACT , TORT OR OTHERWISE , ARISING FROM ,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE .
* /
2015-10-09 17:13:05 +08:00
package strcase
import (
"strings"
)
2019-04-19 15:12:49 +08:00
// ToSnake converts a string to snake_case
2015-10-09 17:13:05 +08:00
func ToSnake ( s string ) string {
2018-07-04 02:24:52 +08:00
return ToDelimited ( s , '_' )
}
2019-04-19 15:12:49 +08:00
// ToScreamingSnake converts a string to SCREAMING_SNAKE_CASE
2018-07-04 02:31:25 +08:00
func ToScreamingSnake ( s string ) string {
return ToScreamingDelimited ( s , '_' , true )
}
2019-04-19 15:12:49 +08:00
// ToKebab converts a string to kebab-case
2018-07-04 02:36:59 +08:00
func ToKebab ( s string ) string {
return ToDelimited ( s , '-' )
}
2019-04-19 15:12:49 +08:00
// ToScreamingKebab converts a string to SCREAMING-KEBAB-CASE
2018-07-04 02:36:59 +08:00
func ToScreamingKebab ( s string ) string {
return ToScreamingDelimited ( s , '-' , true )
}
2019-04-19 15:12:49 +08:00
// ToDelimited converts a string to delimited.snake.case (in this case `del = '.'`)
2018-07-04 02:24:52 +08:00
func ToDelimited ( s string , del uint8 ) string {
2018-07-04 02:31:25 +08:00
return ToScreamingDelimited ( s , del , false )
}
2019-04-19 15:12:49 +08:00
// ToScreamingDelimited converts a string to SCREAMING.DELIMITED.SNAKE.CASE (in this case `del = '.'; screaming = true`) or delimited.snake.case (in this case `del = '.'; screaming = false`)
2018-07-04 02:31:25 +08:00
func ToScreamingDelimited ( s string , del uint8 , screaming bool ) string {
2017-11-29 08:52:26 +08:00
s = addWordBoundariesToNumbers ( s )
2015-10-09 17:13:05 +08:00
s = strings . Trim ( s , " " )
n := ""
for i , v := range s {
2018-03-11 15:56:25 +08:00
// treat acronyms as words, eg for JSONData -> JSON is a whole word
2018-05-19 16:27:10 +08:00
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
}
2018-03-11 15:56:25 +08:00
}
2018-05-19 16:27:10 +08:00
2018-07-04 02:24:52 +08:00
if i > 0 && n [ len ( n ) - 1 ] != del && nextCaseIsChanged {
2018-05-19 16:27:10 +08:00
// add underscore if next letter case type is changed
if v >= 'A' && v <= 'Z' {
2018-07-04 02:24:52 +08:00
n += string ( del ) + string ( v )
2018-05-19 16:27:10 +08:00
} else if v >= 'a' && v <= 'z' {
2018-07-04 02:24:52 +08:00
n += string ( v ) + string ( del )
2018-05-19 16:27:10 +08:00
}
2018-07-04 02:24:52 +08:00
} else if v == ' ' || v == '_' || v == '-' {
// replace spaces/underscores with delimiters
n += string ( del )
2015-10-09 17:13:05 +08:00
} else {
n = n + string ( v )
}
}
2018-07-04 02:31:25 +08:00
if screaming {
n = strings . ToUpper ( n )
} else {
n = strings . ToLower ( n )
}
2015-10-09 17:13:05 +08:00
return n
}