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

Re: Idiomatic Perl?

by haukex (Archbishop)
on Mar 20, 2018 at 14:20 UTC ( [id://1211330]=note: print w/replies, xml ) Need Help??


in reply to Idiomatic Perl?

I see two things in that code that I would suggest to improve:

  • Don't use eval - it allows execution of arbitrary Perl code, and getting the quoting of interpolated code right is tricky (try entering one double quote for $str), and so it should only be used sparingly. In this case it is not needed, just say: my $answer = $str =~ /$pattern/; - however note that then, your regexes should not be entered with the surrounding slashes.
    (If you do use eval someday, make sure to do proper error checking, as described e.g. here: something like eval "$code; 1" or warn "eval failed: $@";)
  • my $str = <STDIN>; and $pattern will have a newline on the end, which you should chomp off, e.g. chomp( my $str = <STDIN> );. See also the Basic debugging checklist, which suggests using a module like Data::Dumper or Data::Dump to look at what variables actually contain. If you use the former, I recommend setting $Data::Dumper::Useqq=1;.

In Perl, as opposed to Python's "there should be one - and preferably only one - obvious way to do it", TIMTOWTDI - There Is More Than One Way To Do It. While there are certainly 20 different ways to write the code you showed, don't worry about that too much - just keep your eye out for best practices like the ones I mentioned above, and otherwise enjoy learning Perl :-) We'll be happy to help.

Made a few minor edits.

Replies are listed 'Best First'.
Re^2: Idiomatic Perl?
by thenextfart (Novice) on Mar 20, 2018 at 14:26 UTC
    Is it okay to just do my $str = chomp(<STDIN>);?
      Is it okay to just do my $str = chomp(<STDIN>);?

      No, because chomp is a bit special: it modifies its argument(s) and returns the total number of characters removed from all its arguments. The code you showed would fail because chomp wants to modify its arguments, but can't modify <STDIN> itself.

      The reason chomp( my $str = <STDIN> ); works is because a scalar assignment in Perl like ( my $str = <STDIN> ) is modifiable (an "lvalue"), as described in Assignment Operators: "Modifying an assignment is equivalent to doing the assignment and then modifying the variable that was assigned to."

      If you want to be a little bit more verbose, what you can do is:

      my $str = <STDIN>; chomp($str);
        Extra parens arent idiomatic :p  chomp $foo;

      Try it! What does it return?

      If it's not what you want, another approach might be to call the chomp on the result of the assignment:

      chomp( my $str = <STDIN> );

      Hope this helps!


      The way forward always starts with a minimal test.

      Depends on what you want to have in $str. Read chomp to learn about the return value of chomp.

        perl -we 'chomp <>'

        > Can't modify <HANDLE> in chomp at -e line 1, at EOF

        ($q=q:Sq=~/;[c](.)(.)/;chr(-||-|5+lengthSq)`"S|oS2"`map{chr |+ord }map{substrSq`S_+|`|}3E|-|`7**2-3:)=~y+S|`+$1,++print+eval$q,q,a,

Log In?
Username:
Password:

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

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

    No recent polls found