eayavas / stringutils

Small utility collection for strings.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

stringutils

stringutils is a collection of small utility tools for string type.


Installation

...bash go get github.com/eayavas/stringutils-demo@latest ...


Usage

...go package main

import ( "fmt"

"github.com/vigo/stringutils-demo"

)

func main(){ reversed, err := stringutils.Reverse("vigo") if err != nil { log.Fatal(err) } fmt.Println(reversed) // ogiv } ...


Contributor(s)


Contribute

All PR’s are welcome!

  1. fork (https://github.com/vigo/stringutils-demo/fork)
  2. Create your branch (git checkout -b my-feature)
  3. commit yours (git commit -am 'add some functionality')
  4. push your branch (git push origin my-feature)
  5. Than create a new Pull Request!

License

This project is licensed under GPLv3


Code Of Conduct

This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the code of conduct.

About

Small utility collection for strings.

License:GNU Lesser General Public License v3.0


Languages

Language:Go 100.0%