Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl Monk, Perl Meditation
 
PerlMonks  

Re: Regex to compare (if) two strings (Uniquely - I will explain inside)

by frozenwithjoy (Priest)
on Nov 24, 2012 at 19:13 UTC ( [id://1005416]=note: print w/replies, xml ) Need Help??


in reply to Regex to compare (if) two strings (Uniquely - I will explain inside)

Comparing 'random hash' to 'input hash' of letters:
#!/usr/bin/env perl use strict; use warnings; use feature 'say'; my $randword = join'', ('A'..'Z')[ map rand 26, 1..8 ]; print "Enter a word using '$randword': "; chomp( my $input = <STDIN> ); die "You didn't enter anything..." unless $input; my %rand_hash; $rand_hash{$_}++ for split //, $randword; my %user_hash; $user_hash{$_}++ for split //, uc $input; my $bad_word; foreach (sort keys %user_hash) { if ( ! exists $rand_hash{$_} || $user_hash{$_} > $rand_hash{$_} ) +{ $bad_word = 1; say "Shame on you! You used too many $_\'s!"; } } say "WOW! You are amazing and so is '$input'!" unless $bad_word;
  • Comment on Re: Regex to compare (if) two strings (Uniquely - I will explain inside)
  • Download Code

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://1005416]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others admiring the Monastery: (5)
As of 2024-04-24 01:57 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found