| |
Perl How To Tutorials
| I received thousands of search queries on my site regarding how to use some Perl topics in different situations. So I decided to write some eBook tutorials about how to use these topics in the most frequent situations. I tried to answer the most significant questions I received from you, giving you a lot of examples to help you understand the topics better. |  |
At this time five eBooks are available :
Perl Scalar and String Functions - How To TutorialSome of the topics described in this eBook are listed below: - How to use the chomp function to remove the ending newline from an input string
- How to manipulate or query information about a string
- How to master data conversions from a format to another
- How to use the scalar and string functions with different statements, special variables and operators
- How to use the scalar and string functions with the regular expressions
- How to use the scalar and string functions with simple or multidimensional arrays or hashes, with complex data structures
and much more.To see what I mean, I suggest to take a look at the Table of Contents of this eBook.
Perl Functions for Real Arrays - How to TutorialSome of the topics described in this eBook are listed below: - How to use pop, push, shift and unshift with a stack array
- How to use pop, push, shift and unshift with a queue array
- How to emulate a circular list with pop, push, shift and unshift
- How to use the real array functions with different statements, special variables and operators
- How to use the real array functions with arrays and lists or with more complex data structures like arrays of arrays, arrays of hashes and hashes of arrays
- How to use the real array functions with matrices
- How to use the real array functions with @_, @ARGV, @$_, %{}, ||, &&, =>, @{}, [], $_
and much more.To see what I mean, I suggest to take a look at the Table of Contents of this eBook.
Perl Functions for List Data - How to TutorialSome of the topics described in this eBook are listed below: - How to use grep as a filter, counter or finder
- How to use grep and map vs foreach
- How to use sort with different aggregates
- How to use the list data functions with different statements, special variables and operators
- How to use the list data functions with arrays, hashes and lists or with more complex data structures like arrays of arrays, arrays of hashes, hashes of arrays or hashes of hashes
- How to use the list data functions with matrices
- How to use the list data functions with @_, @$_, %{}, ||, &&, =>, @{}, [], $_
and much more.To see what I mean, I suggest to take a look at the Table of Contents of this eBook.
Perl Functions for Real Hashes - How to TutorialSome of the topics described in this eBook are listed below: - How to use delete with hashes or arrays
- How to use exists with arrays, hashes or subroutines
- How to use the real hashes functions with grep, map and regular expressions
- How to use the real hashes functions with different statements, special variables and operators
- How to use the real hashes functions with arrays, hashes and lists or with more complex data structures like arrays of hashes, hashes of arrays or hashes of hashes
- How to use the keys and values functions to traverse hashes
- How to use the real hashes functions with @$_, %{}, ||, &&, =>, @{}, [], $_, $"
and much more.To see what I mean, I suggest to take a look at the Table of Contents of this eBook.
Perl Statements How To TutorialSome of the topics described in this eBook are listed below: - How to use the conditional statements: if, unless, switch
- How to use the loop statements: for, foreach, while, do-while, until, do-until; a special attention is accorded to the foreach and while statements, being provided a lot of examples to illustrate their use
- How to use compound statements, loop controls and statement modifiers
- How to use the statements with different functions or operators
- How to use the statements with the regular expressions
- How to use statements with simple or multidimensional arrays or hashes, with complex data structures
and much more.To see what I mean, I suggest to take a look at the Table of Contents of this eBook.
Kenneth Burrell MA, United States wrote:
I'm Java/C# programmer for many years .. when I also inherited 1000's of lines of production Perl code.So like most languages, once you get comfortable with the syntax, reading the seminal books, you start to build your toolboxand then rely on "code snippet" books to refine ideas, or get deeper into more specialized aspects of the language when the project requires it.I can't even remember how I found your link .. but from the myriad of Perl ones I cycle through ... your books are not unlike the way I try to organize snippets, around language features, and applications .. but yours are much more complete, and thorough. I'm continually amazed at the power of applying the Perl scalars, lists, and hashes model to any problem. I remember back in the day when Larry Wall won a Dr Dobbs award, and I wondered what the hoopla could possibly be about, after all I was an aspiring high level language programmer, how hard could scripting be? .. its now, many years later that I can now say that I understand... Your books, taken as a whole, are probably the best snippet based collection that I've seen for Perl .. Can't wait for the hash addition.If you're still in the Perl space, it would be cool to see some snippets based on more functional aspects, modules, and dynamic code blocks, which is where I tend to take my Perl code currently... Harley Jones OR, United States wrote:
Just a reply to let you know that I appreciate that you provided a free download of your perl book ...Next in line was the question of just how the product differed from any other book or website for usefulness. I purchased the $10 book, and am still looking it over now. I really like the concept of a list of 'how-to's" that will hopefully save me some time looking up such items on the internet.
|