Skip to content

Folders and files

NameName
Last commit message
Last commit date

Latest commit

History

177 Commits

Repository files navigation

#stringutil Build StatusGoDocReadability Ruby's string manipulation magic brought to Golang

Why?

"What was the biggest surprise you encountered rolling out Go?" I knew the answer instantly: Although we expected C++ programmers to see Go as an alternative, instead most Go programmers come from languages like Python and Ruby. Robert Pike, Less is exponentially more

stringutil makes all the string manipulation methods from ruby accessible in go.

##Install

 go get https://github.com/wallclockbuilder/stringutil

##Import

import"stringutil""https://github.com/wallclockbuilder/stringutil"

Example

I want to remove the trailing space from the end of a string.

This is what Go forces me to do:

strings.TrimRightFunc(s, unicode.IsSpace)

This is the simple version from Ruby:

stringutil.Rstrip(s)

I prefer the Ruby version.

##Use

package main
import"github.com/wallclockbuilder/stringutil"funcmain() {
stringutil.Capitalize("abcde") #=>"ABCDE"
stringutil.Reverse("stressed") #=>"desserts"
stringutil.Swapcase("Hello") #=>"hELLO"
}

##Documentation go doc style documentation for this package is available online at http://godoc.org/github.com/wallclockbuilder/stringutil

Contributing

  1. Fork it ( https://github.com/wallclockbuilder/stringutil )
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create a new Pull Request

About

Ruby's string manipulation convenience functions for Golang

Resources

Stars

3 stars

Watchers

0 watching

Forks

Releases

Packages

Used by

Contributors

Languages