Beefy Boxes and Bandwidth Generously Provided by pair Networks
laziness, impatience, and hubris
 
PerlMonks  

Re: Need help with removing values from arrays

by dbander (Scribe)
on Aug 15, 2017 at 17:26 UTC ( [id://1197450]=note: print w/replies, xml ) Need Help??


in reply to Need help with removing values from arrays

Changed my answer. This one:

  • Ensures end-to-end match
  • Allows case-insensitive (ComboBox, user might enter wrong case?)
  • Breaks the steps up so it's easier to read

$ cat ./arrayreducto.pl #!/usr/bin/perl use strict; use warnings; my $old_combo = "USA,Canada,Australia"; print "Old Combobox: $old_combo\n"; my $str = 'Canada'; print "Selected: $str\n"; my @old_combolist = split /\,/, $old_combo; my $str_regex = quotemeta $str; my @new_combolist = (); foreach my $old_comboitem (@old_combolist) { # Must match end to end but user may have entered in wrong case if ($old_comboitem !~ /^$str_regex$/i) { push @new_combolist, $old_comboitem; } } my $new_combo = join ',', @new_combolist; print "New Combobox: $new_combo\n"; $ perl ./arrayreducto.pl Old Combobox: USA,Canada,Australia Selected: Canada New Combobox: USA,Australia

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others studying the Monastery: (7)
As of 2024-04-23 20:02 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found