A set of chain-able string helpers to reduce the pain of manipulating strings.
go get github.com/mamal72/stringish
# or use dep, vgo, glide or anything else
ReplaceN
ReplaceAll
ToLower
ToUpper
TrimPrefix
TrimSuffix
TrimSpaces
TrimPrefixSpaces
TrimSuffixSpaces
HasPrefix
HasSuffix
Equals
IsEmpty
IsBlank
Contains
Len
Index
LastIndex
Map
Filter
GetString
package main
import (
"log"
"github.com/mamal72/stringish"
)
func main() {
str := stringish.New(" hello there ")
str.TrimSpaces().Map(func(char string) string {
return strings.ToUpper(char)
})
log.Println(str.GetString()) // "HELLO THERE"
log.Println(str.Replace("HELLO", "bye").Contains("bye")) // true
log.Println(str.GetString()) // "bye THERE"
}
Just create an issue and describe it. I'll check it ASAP!
You can fork the repository, improve or fix some part of it and then send the pull requests back (with some tests ofc) if you want to see them here. I really appreciate that. ❤️