Beefy Boxes and Bandwidth Generously Provided by pair Networks
Problems? Is your data what you think it is?
 
PerlMonks  

Re: Equality of strings

by stevieb (Canon)
on Oct 21, 2019 at 19:48 UTC ( [id://11107788]=note: print w/replies, xml ) Need Help??


in reply to Equality of strings

First, when describing a problem, be very sure you haven't made a typo:

Why does it enter in the if-statement if $content != "[]?

You're missing a closing double-quote character at the end. These things are important for those who may try to troubleshoot your issue. Be clear, concise and correct in what you're actually trying to sort out.

Next, $content == "[]"... you are testing a variable against a string of characters. perl recognizes == as the numerical comparison operator. If you want to compare to a string (which you are clearly implying here), you need to use the string comparison operator, eq. So replace == (numerical comparison) to eq (string comparison) and you should progress further.

See Equality Operators for details.

Log In?
Username:
Password:

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

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

    No recent polls found