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

Re: Re: alpha vs alpha numeric

by strat (Canon)
on Jun 13, 2002 at 11:40 UTC ( [id://174152]=note: print w/replies, xml ) Need Help??


in reply to Re: alpha vs alpha numeric
in thread alpha vs alpha numeric

Maybe you could split up the line into two statements to find the problem easier:
if ($ref->{prodname} =~ /$value/) { # worked } elsif($ref->{key1} =~ /\Q$value\E/) { # worked }
For the next step, try to replace /\Q$value\E/ with /^\Q$value\E$/<P> If it still works, the only possibility that comes into my mind are newlines (e.g. if you read something from a file or STDIN) in either $ref->{...} or $value. You can remove them with chomp( $ref->{...} ) or the like.

Then, $ref->{...} eq $value might work as well.

If you need case insensitive comparisons, try $ref->{...} =~ /^\Q$value\E/i, or in the next step:
if (lc ( $ref->{...} ) eq lc($value) ) {

Best regards,
perl -e "s>>*F>e=>y)\*martinF)stronat)=>print,print v8.8.8.32.11.32"

Log In?
Username:
Password:

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

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

    No recent polls found