Beefy Boxes and Bandwidth Generously Provided by pair Networks
go ahead... be a heretic
 
PerlMonks  

Re^4: Recomendations For Learning perl?

by adamZ88 (Beadle)
on Dec 07, 2016 at 21:47 UTC ( [id://1177434]=note: print w/replies, xml ) Need Help??


in reply to Re^3: Recomendations For Learning perl?
in thread Recomendations For Learning perl?

I don't suppose you would want to share the code for this program hu Nick? It is pretty cool.

  • Comment on Re^4: Recomendations For Learning perl?

Replies are listed 'Best First'.
Re^5: Recomendations For Learning perl?
by 1nickt (Canon) on Dec 07, 2016 at 22:49 UTC

    Sure, here you go:

    use strict; use warnings; use Algorithm::Diff qw/ LCS_length /; ( my $name = $ARGV[0] ) && length $ARGV[0] > 2 or die "Usage: `$0 <nam +e>` (min. 3 letters)"; open my $fh, '<', '/usr/share/dict/words' or die $!; my $found = 0; while ( <$fh> ) { next unless LCS_length( [ split //, $name ], [ split // ] ) == len +gth $name; $found++; print "$found $_"; } __END__
    Things to maybe note:
    • How to load a clever module and import its LCS_length function to do all the work :-)
    • How to capture the user input from the command line in the array @ARGV
    • How to open a file for reading
    • How to create a counter and increment it in a loop
    • How to read from an open filehandle line-by-line (which avoids reading it all into memory), using:
      while ( <$fh> ) { ... }
    • The most obfuscated thing in this script: How to be lazy and not have to tell a function what to operate on by using the default argument, which is the current value of the magic variable $_. So in a loop I can say:
      while ( <$fh> ) { # each line is loaded into $_ in turn my @characters = split //; }
      , omitting the second argument to split, and Perl knows to Do The Right Thing. More self-documenting usage would be:
      while ( my $line = <$fh> ) { # each line now in $line my @characters = split //, $line; }
    Note that you can get documentation on many of Perl's built-in functions with perldoc -f <function_name>, e.g. perldoc -f split.

    Hope this helps! have fun ....

    edit: fixed missing parens


    The way forward always starts with a minimal test.

      You are too kind! I totally do see myself thinking of a project like this one and making it a reality when I am more proficient in Perl. Surprisingly I follow almost all of your code! The two things that cause some head scratching is loading the module and the second argument that needs to be passed. Is this just the length of the name? I know I have loaded modules previously, I just forgot how, I will do my research.

        the second argument that needs to be passed. Is this just the length of the name?

        No, there's only one argument expected. That line of code is the program's error checking. It does two things, but acts on the same variable both times.

        ( my $name = $ARGV[0] ) && length $ARGV[0] > 2 or die "Usage: `$0 <nam +e>` (min. 3 letters)";
        What's happening here is we are evaluating the truth of an expression without using an explicit if statement.
        my $name = $ARGV[0]
        will evaluate to false if the first argument passed in is empty (i.e. non-existent) because then the value of $name will be false (so `0` would fail also)[1]. If that happens, the or die ... kicks in. But if it evaluates to true, then
        && length $ARGV[0] > 2
        is evaluated for truth, so at this point we know we have some kind of value in the arg passed in, and now we check that it's at least three characters long. If the second part of the evaluation fails, the whole thing fails (because of the &&), and again we go to or die ....

        Finally, in our error message emitted upon dying, we use $0, the global variable that holds the name of the currently executing script, and explain what the problem was.

        Amazing how much useful stuff you can do with one line of Perl, isn't it?

        [1] So in Perl you can evaluate truth very concisely:

        while ( 1 ) { # runs forever ... } if ( 0 ) { # won't run ... } sub foo { return 'something'; # or maybe not } if ( foo() ) { # only runs if foo() returns something ... }

        Hope this helps.

        edit: added missing parens


        The way forward always starts with a minimal test.
Re^5: Recomendations For Learning perl?
by Laurent_R (Canon) on Dec 07, 2016 at 22:00 UTC
    I am pretty sure 1nickt will share it with you, since you kindly ask. Sharing code is certainly part of the Perl culture and also part of this site's raison d'être.

    And you might very well be astonished by the small numbre of code lines needed to doing that.

    I learned Linux and pearl
    Oh, and BTW, the proper name of the language is Perl.
Re^5: Recomendations For Learning perl?
by stevieb (Canon) on Dec 07, 2016 at 22:01 UTC

    Command line one-liner:

    perl -wMstrict -E 'print for grep /adam/, <>' /usr/share/dict/words

    Script form (overly verbose so it's easier to understand):

    use warnings; use strict; my $word_file = '/usr/share/dict/words'; open my $fh, '<', $word_file or die "can't open the $word_file file!: $!"; while (my $line = <$fh>){ if ($line =~ /adam/){ print $line; } }
      Hi Steve,

      ++ for the code, but I don't think that you program will produce a list anywhere near the one by 1nickt, since your code looks for the adam letters in sequence.

        Yeah, I knew Nick would come back with some code as well, so I thought I'd put something out there that the OP could glean in the meantime ;)

Log In?
Username:
Password:

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

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

    No recent polls found