stringutils is a collection of small utility tools for string type.
go get -u github.com/umuttopalak/stringutilspackage main
import (
"fmt"
"github.com/umuttopalak/stringutils-demo"
)
func main(){
reversed, err := stringutils.Reverse("vigo")
if err != nil {
log.Fatal(err)
}
fmt.Println(reversed) // ogiv
}- Umut Topalak - Creator, maintainer
All PR’s are welcome!
fork(https://github.com/umuttopalak/stringutils/fork)- Create your
branch(git checkout -b my-feature) commityours (git commit -am 'add some functionality')pushyourbranch(git push origin my-feature)- Than create a new Pull Request!