Beefy Boxes and Bandwidth Generously Provided by pair Networks
good chemistry is complicated,
and a little bit messy -LW
 
PerlMonks  

Re: help manipulating data in an array.

by Zaxo (Archbishop)
on Nov 12, 2004 at 04:18 UTC ( [id://407270]=note: print w/replies, xml ) Need Help??


in reply to help manipulating data in an array.

Your error messages say what is wrong. The syntax @foo =~ m/$re/ does not do what you want it to.

You should look at each line separately and try the lookup with each. I'd be inclined to use the index builtin instead of regex matching, since you have the particular number you want to look for. Here's what I'd do, sticking close to what you wrote,

# after getting @number my $wanted = '9432'; for (@number[0..99]) { if (index($_, $wanted) != -1) { print "match found\n"; } else { print "match failed\n"; } }
There are a couple of things there you may not have seen before. I used an array slice to limit the number of items searched, where you used a while loop. The other is the index function itself.

After Compline,
Zaxo

Log In?
Username:
Password:

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

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

    No recent polls found