stringy/message.go

16 lines
396 B
Go
Raw Normal View History

2020-04-03 06:36:09 +03:00
package string_manipulation
const (
2020-04-05 14:02:47 +03:00
First = "first"
Last = "last"
Left = "left"
Right = "right"
Both = "both"
OddError = "odd number rule provided please provide in even count"
SelectCapital = "([a-z])([A-Z])"
ReplaceCapital = "$1 $2"
2020-04-05 12:11:56 +03:00
)
2020-04-05 14:02:47 +03:00
var False = []string{"off", "no", "0", "false"}
var True = []string{"on", "yes", "1", "True"}