Beefy Boxes and Bandwidth Generously Provided by pair Networks
Syntactic Confectionery Delight
 
PerlMonks  

Re: Re: Whatever happened to chomp?

by pg (Canon)
on Dec 14, 2003 at 19:53 UTC ( [id://314673]=note: print w/replies, xml ) Need Help??


in reply to Re: Whatever happened to chomp?
in thread Whatever happened to chomp?

2 is a number.

No, 2 could be a number or a string base on the context as how you use it. A better answer is to point out what he really misunderstood: the context.

It is pretty straight to simply change == to eq, and quot 2:

use Tk; use Tk::NoteBook; use strict; use warnings; use strict; use warnings; while (my $data = <DATA>) { chomp $data; print $data; if ($data eq "2"){print "->got 2\n"} } print "Enter a 2\n"; my $input = <>; chomp $input; if ($input eq "2"){print "->got 2\n"} __DATA__ 1 2 3 4

Log In?
Username:
Password:

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

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

    No recent polls found