Giter Club home page Giter Club logo

hashsub's Introduction

#hashsub v0.1.2 An gem that extends the ruby String class with the methods hashsub and hashsub!. hashsub to implement global subsitution in strings using a hash in the format /regex/=> "substitution"

####usage

####"string".hashsub({/pattern/=>selector[, /pattern/ => selector]*}) #=> "new string"

The method hashsub is called with a single argument, a hash where each key is a regex pattern or string to match in self and each value is a corresponding string to use for replacement.

####example

require 'hashsub'

def manipulator(str)
	hash_matches = {
		/\bfou?r\b/i => "4", #regex with flags
		"/\bto+|two\b/"" => "2", #regex as string
		"eight" => "8", #plain string
		/\bsc(.*)\b/ => "sc\1\1\1"
	}
	str.hashsub(hash_matches)
end

manipulator("Four score and eight years to go.") #=> "4 scoreoreore and 8 years 2 go"

####string.hashsub!({/pattern/=>selector[, /pattern/ => selector]*}) #=> string

hashsub! compares to hashsub as expected, performing the same operation but returning the original String object, with its value changed.

####Installation

$> git clone https://github.com/erikpeterson/hashsub

$> gem build hashsub/hashsub.gemspec
	...
	File: hashsub-0.1.2.gemspec

$> gem install hashsub/hashsub-0.1.2.gemspec

#WARNING This function extends the String class, and has not been tested on versions of Ruby other than 2.0.0p247. Use at your own risk.

hashsub's People

Contributors

erikpeterson avatar

Watchers

James Cloos avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.