Skip to content

Stringutils is a lightweight Go package offering handy utilities for string manipulation, such as reversing strings. Ideal for Go developers looking to simplify common string operations.

License

Notifications You must be signed in to change notification settings

umuttopalak/stringutils

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

stringutils

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

Installation

go get -u github.com/umuttopalak/stringutils

Usage

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
}

Contributor(s)

Contribute

All PR’s are welcome!

  1. fork (https://github.com/umuttopalak/stringutils/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!

About

Stringutils is a lightweight Go package offering handy utilities for string manipulation, such as reversing strings. Ideal for Go developers looking to simplify common string operations.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages