Beefy Boxes and Bandwidth Generously Provided by pair Networks
Keep It Simple, Stupid
 
PerlMonks  

Re^3: Set Notation Handling

by tall_man (Parson)
on Mar 28, 2005 at 23:37 UTC ( [id://442994]=note: print w/replies, xml ) Need Help??


in reply to Re^2: Set Notation Handling
in thread Set Notation Handling

Member testing is included in Set::IntSpan. Try this.
use strict; use Set::IntSpan; + my $set = new Set::IntSpan('1-4,6,9,12-18'); testvalue(3, $set); testvalue(7, $set); + sub testvalue { my $value = shift; my $set = shift; if (member $set $value){ print "$value is valid\n"; }else{ print "$value is invalid\n"; } }

Replies are listed 'Best First'.
Re^4: Set Notation Handling
by tradez (Pilgrim) on Mar 29, 2005 at 15:35 UTC
    That works perfectly! Thank you sooo much for your help!


    Tradez
    "Every official that come in
    Cripples us leaves us maimed
    Silent and tamed
    And with our flesh and bones
    He builds his homes"

    - Zach de la Rocha

Log In?
Username:
Password:

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

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

    No recent polls found