Beefy Boxes and Bandwidth Generously Provided by pair Networks
Don't ask to ask, just ask
 
PerlMonks  

Re^2: A Case with 5 Var's

by ultibuzz (Monk)
on Jan 25, 2007 at 12:45 UTC ( [id://596466]=note: print w/replies, xml ) Need Help??


in reply to Re: A Case with 5 Var's
in thread A Case with 5 Var's

sounds interessting, so i need to check the vector bit pattern to generate a matching qry
and this i woud do again with if and co ;/ because i don't know another way
kd ultibuzz

Replies are listed 'Best First'.
Re^3: A Case with 5 Var's
by GrandFather (Saint) on Jan 25, 2007 at 21:56 UTC

    It depends a lot on where you want to go with this. One technique would be to use a hash to generate a dispatch table. Consider:

    use strict; use warnings; my %dispatch = ( 0b000001 => \&noneTrue, 0b111110 => \&allTrue, 0b001101 => \&firstLine, ); my $name = ''; my $vorname = 'full'; my $plz = 1; my $tel = 0; my $tel49 = undef; while (<DATA>) { chomp; my ($name, $vorname, $plz, $tel, $tel49) = split ','; my $vector = (!$name) || 2; $vector |= (!$vorname) || 4; $vector |= (!$plz) || 8; $vector |= (!$tel) || 16; $vector |= (!$tel49) || 32; $dispatch{$vector}->($.) if exists $dispatch{$vector}; } sub noneTrue { print "None true in input line $_[0]\n"; } sub allTrue { print "All true in input line $_[0]\n"; } sub firstLine { print "Matched first line pattern at input line $_[0]\n"; } __DATA__ ,full,1,0, first,second,3,4, 1,2,3,4,5 ,,3,4, last,,,,

    Prints:

    Matched first line pattern at input line 1 All true in input line 3 None true in input line 5

    DWIM is Perl's answer to Gödel

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others rifling through the Monastery: (3)
As of 2024-04-25 18:50 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found