Articoli correlati a LEARNING PERL, 2ND EDITION

LEARNING PERL, 2ND EDITION - Brossura

 
9781565922846: LEARNING PERL, 2ND EDITION

Sinossi

In this update of a bestseller, two leading Perl trainers teach you to use the most universal scripting language in the age of the World Wide Web. With a foreword by Larry Wall, the creator of Perl, this smooth, carefully paced book is the "official" guide for both formal (classroom) and informal learning. It is now current for Perl version 5.004. Learning Perl is a hands-on tutorial designed to get you writing useful Perl scripts as quickly as possible. Exercises (with complete solutions) accompany each chapter. A lengthy, new chapter in this edition introduces you to CGI programming, while touching also on the use of library modules, references, and Perl's object-oriented constructs. Perl is a language for easily manipulating text, files, and processes. It comes standard on most UNIX platforms and is available free of charge on all other important operating systems. Perl technical support is informally available -- often within minutes -- from a pool of experts who monitor a USENET newsgroup (comp.lang.perl.misc) with tens of thousands of readers. Contents include: A quick tutorial stroll through Perl basics Systematic, topic-by-topic coverage of Perl's broad capabilities Lots of brief code examples Programming exercises for each topic, with fully worked-out answers How to execute system commands from your Perl program How to manage DBM databases using Perl An introduction to CGI programming for the Web

Le informazioni nella sezione "Riassunto" possono far riferimento a edizioni diverse di questo titolo.

Descrizione del libro

Making Easy Things Easy and Hard Things Possible

Contenuti

Foreword; Second Edition Update; Preface; What This Book Is About; Retrieving Exercises; Additional Resources; How to Get Perl; Conventions Used in This Book; Support; Acknowledgments for the First Edition; Acknowledgments for the Second Edition; We’d Like to Hear from You; Chapter 1: Introduction; 1.1 History of Perl; 1.2 Purpose of Perl; 1.3 Availability; 1.4 Basic Concepts; 1.5 A Stroll Through Perl; 1.6 Exercise; Chapter 2: Scalar Data; 2.1 What Is Scalar Data?; 2.2 Numbers; 2.3 Strings; 2.4 Scalar Operators; 2.5 Scalar Variables; 2.6 Scalar Operators and Functions; 2.7 as a Scalar Value; 2.8 Output with print; 2.9 The Undefined Value; 2.10 Exercises; Chapter 3: Arrays and List Data; 3.1 What Is a List or Array?; 3.2 Literal Representation; 3.3 Variables; 3.4 Array Operators and Functions; 3.5 Scalar and List Context; 3.6 as an Array; 3.7 Variable Interpolation of Arrays; 3.8 Exercises; Chapter 4: Control Structures; 4.1 Statement Blocks; 4.2 The if/unless Statement; 4.3 The while/until Statement; 4.4 The for Statement; 4.5 The foreach Statement; 4.6 Exercises; Chapter 5: Hashes; 5.1 What Is a Hash?; 5.2 Hash Variables; 5.3 Literal Representation of a Hash; 5.4 Hash Functions; 5.5 Hash Slices; 5.6 Exercises; Chapter 6: Basic I/O; 6.1 Input from STDIN; 6.2 Input from the Diamond Operator; 6.3 Output to STDOUT; 6.4 Exercises; Chapter 7: Regular Expressions; 7.1 Concepts About Regular Expressions; 7.2 Simple Uses of Regular Expressions; 7.3 Patterns; 7.4 More on the Matching Operator; 7.5 Substitutions; 7.6 The split and join Functions; 7.7 Exercises; Chapter 8: Functions; 8.1 Defining a User Function; 8.2 Invoking a User Function; 8.3 Return Values; 8.4 Arguments; 8.5 Private Variables in Functions; 8.6 Semiprivate Variables Using local; 8.7 File-Level my( ) Variables; 8.8 Exercises; Chapter 9: Miscellaneous Control Structures; 9.1 The last Statement; 9.2 The next Statement; 9.3 The redo Statement; 9.4 Labeled Blocks; 9.5 Expression Modifiers; 9.6 && and || as Control Structures; 9.7 Exercises; Chapter 10: Filehandles and File Tests; 10.1 What Is a Filehandle?; 10.2 Opening and Closing a Filehandle; 10.3 A Slight Diversion: die; 10.4 Using Filehandles; 10.5 The -x File Tests; 10.6 The stat and lstat Functions; 10.7 Exercises; Chapter 11: Formats; 11.1 What Is a Format?; 11.2 Defining a Format; 11.3 Invoking a Format; 11.4 More About the Fieldholders; 11.5 The Top-of-Page Format; 11.6 Changing Defaults for Formats; 11.7 Exercises; Chapter 12: Directory Access; 12.1 Moving Around the Directory Tree; 12.2 Globbing; 12.3 Directory Handles; 12.4 Opening and Closing a Directory Handle; 12.5 Reading a Directory Handle; 12.6 Exercises; Chapter 13: File and Directory Manipulation; 13.1 Removing a File; 13.2 Renaming a File; 13.3 Creating Alternate Names for a File: Linking; 13.4 Making and Removing Directories; 13.5 Modifying Permissions; 13.6 Modifying Ownership; 13.7 Modifying Timestamps; 13.8 Exercises; Chapter 14: Process Management; 14.1 Using system and exec; 14.2 Using Backquotes; 14.3 Using Processes as Filehandles; 14.4 Using fork; 14.5 Summary of Process Operations; 14.6 Sending and Receiving Signals; 14.7 Exercises; Chapter 15: Other Data Transformation; 15.1 Finding a Substring; 15.2 Extracting and Replacing a Substring; 15.3 Formatting Data with sprintf( ); 15.4 Advanced Sorting; 15.5 Transliteration; 15.6 Exercises; Chapter 16: System Database Access; 16.1 Getting Password and Group Information; 16.2 Packing and Unpacking Binary Data; 16.3 Getting Network Information; 16.4 Exercise; Chapter 17: User Database Manipulation; 17.1 DBM Databases and DBM Hashes; 17.2 Opening and Closing DBM Hashes; 17.3 Using a DBM Hash; 17.4 Fixed-Length Random Access Databases; 17.5 Variable-Length ( Text) Databases; 17.6 Exercises; Chapter 18: Converting Other Languages to Perl; 18.1 Converting awk Programs to Perl; 18.2 Converting sed Programs to Perl; 18.3 Converting Shell Programs to Perl; 18.4 Exercise; Chapter 19: CGI Programming; 19.1 The CGI.pm Module; 19.2 Your CGI Program in Context; 19.3 Simplest CGI Program; 19.4 Passing Parameters via CGI; 19.5 Less Typing; 19.6 Form Generation; 19.7 Other Form Elements; 19.8 Creating a Guestbook Program; 19.9 Troubleshooting CGI Programs; 19.10 Perl and the Web: Beyond CGI Programming; 19.11 Further Reading; 19.12 Exercises; Exercise Answers; Chapter 2; Chapter 3; Chapter 4; Chapter 5; Chapter 6; Chapter 7; Chapter 8; Chapter 9; Chapter 10; Chapter 11; Chapter 12; Chapter 13; Chapter 14; Chapter 15; Chapter 16; Chapter 17; Chapter 18; Chapter 19; Libraries and Modules; Library Terminology; Standard Modules; CPAN: Beyond the Standard Library; Networking Clients; A Simple Client; A Webget Client; An Interactive Client; Further Reading on Networking; Topics We Didn’t Mention; Full Interprocess Communications; The Debugger; The Command Line; Other Operators; Many, Many More Functions; Many, Many Predefined Variables; Symbol Table Manipulation with *FRED; Additional Regular-Expression Features; Packages; Embeddible, Extensible; And Other Stuff; Colophon;

Le informazioni nella sezione "Su questo libro" possono far riferimento a edizioni diverse di questo titolo.

  • EditoreO'Reilly Media Inc
  • Data di pubblicazione1997
  • ISBN 10 1565922840
  • ISBN 13 9781565922846
  • RilegaturaCopertina flessibile
  • LinguaInglese
  • Numero edizione1
  • Numero di pagine269
  • Contatto del produttorenon disponibile

Compra usato

Condizioni: buono
Befriedigend/Good: Durchschnittlich...
Visualizza questo articolo

EUR 4,00 per la spedizione da Germania a Italia

Destinazione, tempi e costi

EUR 11,87 per la spedizione da Regno Unito a Italia

Destinazione, tempi e costi

Risultati della ricerca per LEARNING PERL, 2ND EDITION

Foto dell'editore

Randal L. Schwartz
Editore: O'Reilly, 1998
ISBN 10: 1565922840 ISBN 13: 9781565922846
Antico o usato Brossura

Da: medimops, Berlin, Germania

Valutazione del venditore 5 su 5 stelle 5 stelle, Maggiori informazioni sulle valutazioni dei venditori

Condizione: good. Befriedigend/Good: Durchschnittlich erhaltenes Buch bzw. Schutzumschlag mit Gebrauchsspuren, aber vollständigen Seiten. / Describes the average WORN book or dust jacket that has all the pages present. Codice articolo M01565922840-G

Contatta il venditore

Compra usato

EUR 4,57
Convertire valuta
Spese di spedizione: EUR 4,00
Da: Germania a: Italia
Destinazione, tempi e costi

Quantità: 1 disponibili

Aggiungi al carrello

Foto dell'editore

Randal L. Schwartz, Tom Christiansen
Editore: O'Reilly Media, 1997
ISBN 10: 1565922840 ISBN 13: 9781565922846
Antico o usato Paperback

Da: Goldstone Books, Llandybie, Regno Unito

Valutazione del venditore 5 su 5 stelle 5 stelle, Maggiori informazioni sulle valutazioni dei venditori

Paperback. Condizione: Very Good. All orders are dispatched within one working day from our UK warehouse. We've been selling books online since 2004! We have over 750,000 books in stock. No quibble refund if not completely satisfied. Codice articolo mon0007198337

Contatta il venditore

Compra usato

EUR 3,84
Convertire valuta
Spese di spedizione: EUR 5,92
Da: Regno Unito a: Italia
Destinazione, tempi e costi

Quantità: 1 disponibili

Aggiungi al carrello

Immagini fornite dal venditore

Randal L. Schwartz
Editore: Oâ²Reilly, 1998
ISBN 10: 1565922840 ISBN 13: 9781565922846
Antico o usato Brossura

Da: WeBuyBooks, Rossendale, LANCS, Regno Unito

Valutazione del venditore 5 su 5 stelle 5 stelle, Maggiori informazioni sulle valutazioni dei venditori

Condizione: Good. Most items will be dispatched the same or the next working day. A copy that has been read but remains in clean condition. All of the pages are intact and the cover is intact and the spine may show signs of wear. The book may have minor markings which are not specifically mentioned. Codice articolo wbs3545608264

Contatta il venditore

Compra usato

EUR 1,47
Convertire valuta
Spese di spedizione: EUR 9,56
Da: Regno Unito a: Italia
Destinazione, tempi e costi

Quantità: 1 disponibili

Aggiungi al carrello

Foto dell'editore

Christiansen, Tom, Schwartz, Randal L.
ISBN 10: 1565922840 ISBN 13: 9781565922846
Antico o usato Brossura

Da: Better World Books Ltd, Dunfermline, Regno Unito

Valutazione del venditore 5 su 5 stelle 5 stelle, Maggiori informazioni sulle valutazioni dei venditori

Condizione: Good. 2nd Edition. Ships from the UK. Used book that is in clean, average condition without any missing pages. Codice articolo 38804013-75

Contatta il venditore

Compra usato

EUR 5,57
Convertire valuta
Spese di spedizione: EUR 5,93
Da: Regno Unito a: Italia
Destinazione, tempi e costi

Quantità: 1 disponibili

Aggiungi al carrello

Foto dell'editore

Randal L. Schwartz,Tom Christiansen,Larry Wall
Editore: O'Reilly Media 11/07/1997, 1997
ISBN 10: 1565922840 ISBN 13: 9781565922846
Antico o usato Brossura

Da: AwesomeBooks, Wallingford, Regno Unito

Valutazione del venditore 5 su 5 stelle 5 stelle, Maggiori informazioni sulle valutazioni dei venditori

Condizione: Very Good. This book is in very good condition and will be shipped within 24 hours of ordering. The cover may have some limited signs of wear but the pages are clean, intact and the spine remains undamaged. This book has clearly been well maintained and looked after thus far. Money back guarantee if you are not satisfied. See all our books here, order more than 1 book and get discounted shipping. . Codice articolo 7719-9781565922846

Contatta il venditore

Compra usato

EUR 3,60
Convertire valuta
Spese di spedizione: EUR 8,89
Da: Regno Unito a: Italia
Destinazione, tempi e costi

Quantità: 2 disponibili

Aggiungi al carrello

Foto dell'editore

Randal L. Schwartz,Tom Christiansen,Larry Wall
Editore: O'Reilly Media 11/07/1997, 1997
ISBN 10: 1565922840 ISBN 13: 9781565922846
Antico o usato Brossura

Da: Bahamut Media, Reading, Regno Unito

Valutazione del venditore 5 su 5 stelle 5 stelle, Maggiori informazioni sulle valutazioni dei venditori

Condizione: Very Good. Shipped within 24 hours from our UK warehouse. Clean, undamaged book with no damage to pages and minimal wear to the cover. Spine still tight, in very good condition. Remember if you are not happy, you are covered by our 100% money back guarantee. Codice articolo 6545-9781565922846

Contatta il venditore

Compra usato

EUR 3,60
Convertire valuta
Spese di spedizione: EUR 8,89
Da: Regno Unito a: Italia
Destinazione, tempi e costi

Quantità: 2 disponibili

Aggiungi al carrello

Foto dell'editore

Schwartz, Randal L /Christiansen, Tom
ISBN 10: 1565922840 ISBN 13: 9781565922846
Antico o usato Brossura

Da: Buchpark, Trebbin, Germania

Valutazione del venditore 5 su 5 stelle 5 stelle, Maggiori informazioni sulle valutazioni dei venditori

Condizione: Gut. Zustand: Gut | Seiten: 302 | Sprache: Englisch | Produktart: Bücher. Codice articolo 425/3

Contatta il venditore

Compra usato

EUR 5,66
Convertire valuta
Spese di spedizione: EUR 6,90
Da: Germania a: Italia
Destinazione, tempi e costi

Quantità: 1 disponibili

Aggiungi al carrello

Foto dell'editore

Schwartz, R. L. and Christiansen, T.
Editore: O'Reilly, 1997
ISBN 10: 1565922840 ISBN 13: 9781565922846
Antico o usato Brossura

Da: Anybook.com, Lincoln, Regno Unito

Valutazione del venditore 5 su 5 stelle 5 stelle, Maggiori informazioni sulle valutazioni dei venditori

Condizione: Good. This is an ex-library book and may have the usual library/used-book markings inside.This book has soft covers. In good all round condition. Please note the Image in this listing is a stock photo and may not match the covers of the actual item,700grams, ISBN:9781565922846. Codice articolo 9558027

Contatta il venditore

Compra usato

EUR 3,33
Convertire valuta
Spese di spedizione: EUR 10,04
Da: Regno Unito a: Italia
Destinazione, tempi e costi

Quantità: 1 disponibili

Aggiungi al carrello

Foto dell'editore

Randal L. Schwartz; Tom Christiansen
Editore: O'Reilly, 1998
ISBN 10: 1565922840 ISBN 13: 9781565922846
Antico o usato Paperback

Da: ThriftBooks-Dallas, Dallas, TX, U.S.A.

Valutazione del venditore 5 su 5 stelle 5 stelle, Maggiori informazioni sulle valutazioni dei venditori

Paperback. Condizione: Very Good. No Jacket. May have limited writing in cover pages. Pages are unmarked. ~ ThriftBooks: Read More, Spend Less 1.4. Codice articolo G1565922840I4N00

Contatta il venditore

Compra usato

EUR 5,88
Convertire valuta
Spese di spedizione: EUR 9,26
Da: U.S.A. a: Italia
Destinazione, tempi e costi

Quantità: 1 disponibili

Aggiungi al carrello

Foto dell'editore

RANDAL L. SCHWARTZ, TOM CHRISTIANSEN
Editore: OREILLY MEDIA, 1997
ISBN 10: 1565922840 ISBN 13: 9781565922846
Antico o usato Paperback

Da: Brit Books, Milton Keynes, Regno Unito

Valutazione del venditore 4 su 5 stelle 4 stelle, Maggiori informazioni sulle valutazioni dei venditori

Paperback. Condizione: Used; Very Good. ***Simply Brit*** Welcome to our online used book store, where affordability meets great quality. Dive into a world of captivating reads without breaking the bank. We take pride in offering a wide selection of used books, from classics to hidden gems, ensuring there is something for every literary palate. All orders are shipped within 24 hours and our lightning fast-delivery within 48 hours coupled with our prompt customer service ensures a smooth journey from ordering to delivery. Discover the joy of reading with us, your trusted source for affordable books that do not compromise on quality. Codice articolo 4089063

Contatta il venditore

Compra usato

EUR 13,75
Convertire valuta
Spese di spedizione: EUR 8,89
Da: Regno Unito a: Italia
Destinazione, tempi e costi

Quantità: 1 disponibili

Aggiungi al carrello

Vedi altre 28 copie di questo libro

Vedi tutti i risultati per questo libro