http://www.perlmonks.org?node_id=1052315


in reply to Re: How do I remove newline character from a number got from unix command
in thread How do I remove newline character from a number got from unix command

I was using chomp($year) and so not returning expected result. Thanks
  • Comment on Re^2: How do I remove newline character from a number got from unix command

Replies are listed 'Best First'.
Re^3: How do I remove newline character from a number got from unix command
by Happy-the-monk (Canon) on Sep 04, 2013 at 13:05 UTC

    I was using chomp($year) and so not returning expected result. Thanks

    So...

    The documentation for chomp tells you how chomp works and what it returns.
    It is the contents of the variable itself that you should verify.

    Update: to be concise, I added "the contents of" to the line above.

    Cheers, Sören

    Créateur des bugs mobiles - let loose once, run everywhere.
    (hooked on the Perl Programming language)

      What did it return? - 1

      What did you expect? - 2013

      How did you verify the result? - by printing

      How did you fail to read the documentation? - beginner(sure for perl)