I want to "scrub" a second string of all characters which are not in the first string. Thus:
scrub 'pure', 'p!u-r-*e'; # returns pure
Here is the code I wrote. It works, but I was hoping there was a module or something which already did this.
sub string_clean {
my ($pure, $dirty) = @_;
my @pure = (split //, $pure) ;
my @dirty = (split //, $dirty) ;
my %pure = map { ($_ => 1) } @pure;
my @cleaned = grep { $pure{$_} } @dirty;
return join '', @cleaned;
}
slickness
staring at the sample code, I'm thinking how slick it would look to call the function like this:
scrub 'impure' => 'pure' ; # yields 'pure'
you know... use the arrow to show the transition from dirty to clean... real English-like.
Carter's compass: I know I'm on the right track when by deleting something, I'm adding functionality
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.