Beefy Boxes and Bandwidth Generously Provided by pair Networks
Do you know where your variables are?
 
PerlMonks  

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??
You could also use Data::Dumper in Terse mode to transform the contents of your array into a string which you can lc and eval to make all contents, including hash keys and values, lower case.
#!/usr/bin/perl use strict; use warnings; use Data::Dumper; my @array1= ( { 'My_ID' => '86091', 'IP' => '2001:DB8:0:0:0:0:0:0/128' }, { 'mY_id' => '86091', 'iP' => '2001:DB8:0:0:0:0:0:0/32' } ); print Dumper(\@array1); print "\nCompare with\n"; @array1 = @{lowercase(\@array1)};#Dereference array ref to array print Dumper(\@array1); sub lowercase{ my $orig_aref = shift; local $Data::Dumper::Terse = 1; #Eliminate '$VAR1 = ' my $string = Dumper($orig_aref); #Stringify contents of data struc +ture my $arefmod = eval lc($string); #Make all data lower case and eval +uate return $arefmod; }
"It is dangerous to understand new things too quickly." — Josiah Warren

In reply to Re: How can we compare two hashed with each other for case insensitive data? by d5e5
in thread How can we compare two hashed with each other for case insensitive data? by dipesh777

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post; it's "PerlMonks-approved HTML":



  • Are you posting in the right place? Check out Where do I post X? to know for sure.
  • Posts may use any of the Perl Monks Approved HTML tags. Currently these include the following:
    <code> <a> <b> <big> <blockquote> <br /> <dd> <dl> <dt> <em> <font> <h1> <h2> <h3> <h4> <h5> <h6> <hr /> <i> <li> <nbsp> <ol> <p> <small> <strike> <strong> <sub> <sup> <table> <td> <th> <tr> <tt> <u> <ul>
  • Snippets of code should be wrapped in <code> tags not <pre> tags. In fact, <pre> tags should generally be avoided. If they must be used, extreme care should be taken to ensure that their contents do not have long lines (<70 chars), in order to prevent horizontal scrolling (and possible janitor intervention).
  • Want more info? How to link or How to display code and escape characters are good places to start.
Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

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

    No recent polls found