New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

strmask

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

strmask

  • 0.3.2
  • Rubygems
  • Socket score

Version published
Maintainers
1
Created
Source

= String::Mask

{Homepage}[http://rubyworks.github.com/strmask] | {Source Code}[http://github.com/rubyworks/strmask]

{}[http://travis-ci.org/rubyworks/strmask]

== 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 (c) 2009 Thomas Sawyer, Rubyworks

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

See the NOTICE.rdoc file for details.

FAQs

Package last updated on 27 Oct 2011

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc