Beefy Boxes and Bandwidth Generously Provided by pair Networks
"be consistent"
 
PerlMonks  

Re: string comparison

by ihb (Deacon)
on May 27, 2005 at 10:52 UTC ( [id://461019]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    use List::Util qw/ first /;
    
    ...
    $count{$_}-- for split /,/, $str2;
    
    my $different = defined first { $_ } values %count;
    
  2. or download this
    require Test::More;
    my $equal = Test::More::eq_array(
        [ split ',', $str1 ],
        [ split ',', $str2 ],
    );
    

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others about the Monastery: (3)
As of 2024-04-19 22:03 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found