Giter Club home page Giter Club logo

strmask's Introduction

String::Mask

Homepage | Source Code

<img src=“http://travis-ci.org/rubyworks/strmask.png” />

DESCRIPTION

Mask provides a string utility to manipulate strings in logicomathematical manner, ie. add, subtract, xor, etc.

SYNOPSIS

Mask objects can be created explicitly via #new.

m1 = String::Mask.new("abc..123", '.')
m2 = String::Mask.new("ab..789.", '.')
m1 - m2                             #=> "....789."

But the String#mask extension is much easier to use.

m1 = "abc..123".mask('.')
m2 = "ab..789.".mask('.')
m1 * m2                             #=> "ab..789."

The second operand can be a normal String. Mask will assume it repesents another mask akin to the first.

"abc..123".mask('.') + "ab..789."   #=> "abc.7893"

INSTALL

To install with RubyGems simply open a console and type:

$ gem install strmask

COPYRIGHTS

Copyright © 2009 Thomas Sawyer, Rubyworks

This program is ditributed unser the terms of the FreeBSD license.

See the NOTICE.rdoc file for details.

strmask's People

Contributors

trans avatar

Watchers

James Cloos avatar  avatar

strmask's Issues

Coerce plain strings

When applying operators the second mask should be able to be a plain string and it gets coerced into a Mask with an slot character the same as the first.

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.