import "github.com/v8fg/kit4go/str"
str.BytesToString
bytes to stringstr.StringToBytes
string to bytes
str.CharIsAlphabet
checks whether the char(byte) is a letterstr.CharIsNumber
checks whether the char is a numberstr.ContainsAll
checks whether the string contains all the given charactersstr.ContainsAny
checks whether the string contains any one of the given charactersstr.StartWithAny
checks whether the string starts with any one of the given charactersstr.EndWithAny
checks whether the string ends with any one of the given charactersstr.EqualIgnoreCase
checks whether the strings are equal, ignore the casestr.IsBlank
checks whether the string is empty or only contain the space characterstr.IsEmpty
checks whether the string length equal to zero
str.Lower
converts a string to the lowercasestr.Upper
converts a string to the uppercasestr.Titles
converts a string to the title formatstr.Quote
converts a string to the quote formatstr.Unquote
converts a string to the unquoted formatstr.Camel
converts a string to the camel case, can specify the delimiter(rune character)str.CamelToSnake
converts a string to the camel case, with the default delimiter_
str.CamelToSnakeWithDelimiter
converts a string to the snake case from camel case, with given delimiterstr.SnakeToCamel
converts a string from snake case to camel casestr.SnakeToCamelWithDefaultInitializes
converts a string from snake to camel with default initializesstr.SnakeToCamelWithInitialismList
converts a string from snake to camel with your given initialism liststr.SnakeToCamelWithInitializes
converts a string from snake to camel with your given initializes mapping