#stringutil 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"
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"
func main() {
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
- Fork it ( https://github.com/wallclockbuilder/stringutil )
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create a new Pull Request