stringutils is a collection of small utility tools for string
type.
go get -u github.com/umuttopalak/stringutils
package 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
) commit
yours (git commit -am 'add some functionality'
)push
yourbranch
(git push origin my-feature
)- Than create a new Pull Request!