Parsing with Perl 6 Regexes and Grammars: A Recursive Descent into Parsing
Autor Moritz Lenzen Limba Engleză Paperback – 11 dec 2017
Write good regexes and parsers with the Perl 6 programming language. You’ll see how regexes are used for searching, parsing, and validation: in particular the grammar extension makes them uniquely suitable for parsing, the main focus of this book. Written by Perl 6 expert Moritz Lenz, a core contributor of Rakudo, Parsing with Perl 6 Regexes and Grammars starts from the very basics of regular expressions, and then explores how they integrate with regular Perl 6 code. Then follows a deeper exploration of how regexes work under the hood and a discussion of common techniques for constructing regexes and exploring the data under scrutiny. Later material goes beyond relatively simple formats to reusable named regexes and grammars, which permit code reuse in grammars, and shows how to write parsers for more involved data formats. Error reporting and case studies wrap up the topic.
While regexes allow you to search for patterns in text and validate input, Perl 6 regexes advance that concept: you’ll see how they are easier to read, yet much more powerful, than the traditional "Perl-compatible regular expression". With improved reusability and backtracking control, you will be able to write complete parsers with the help of this book.
What You'll Learn
- Discover the building blocks of Perl 6 regexes
- Handle regex mechanics and master useful regex techniques
- Extract data and work with patterns among these use cases
- Reuse named regexes and other grammars as components or templates
- Write full parsers, including advanced error reporting and data extraction
- Learn how to parse nested scopes and indention-based formats
Who This Book Is For
Those with at least some prior experience with Perl programming, but who may be new to Perl 6 aswell as searching and parsing.
Preț: 221.07 lei
Preț vechi: 276.33 lei
-20% Nou
Puncte Express: 332
Preț estimativ în valută:
42.30€ • 44.49$ • 35.35£
42.30€ • 44.49$ • 35.35£
Carte tipărită la comandă
Livrare economică 09-23 ianuarie 25
Preluare comenzi: 021 569.72.76
Specificații
ISBN-13: 9781484232279
ISBN-10: 1484232275
Pagini: 298
Ilustrații: XIV, 201 p. 12 illus., 4 illus. in color.
Dimensiuni: 155 x 235 x 18 mm
Greutate: 0.31 kg
Ediția:1st ed.
Editura: Apress
Colecția Apress
Locul publicării:Berkeley, CA, United States
ISBN-10: 1484232275
Pagini: 298
Ilustrații: XIV, 201 p. 12 illus., 4 illus. in color.
Dimensiuni: 155 x 235 x 18 mm
Greutate: 0.31 kg
Ediția:1st ed.
Editura: Apress
Colecția Apress
Locul publicării:Berkeley, CA, United States
Cuprins
1. What are Regexes and Grammars?.- 2. Getting Started with Perl 6.- 3. Building Blocks of Regexes.- 4. Regexes and Perl 6 Code.- 5. Extracting Data from Regex Matches.- 6. Regex Mechanics.- 7. Regex Techniques.- 8. Reusing and Composing Regexes.- 9. Parsing With Grammars.- 10. Extracting Data From Matches.- 11. Generating Good Parse Error Messages.- 12. Unicode and Natural Language.- 13. Case Studies.
Notă biografică
Moritz Lenz is a software engineer and architect. In the Perl community, he is well known for his contributions to the Perl 6 programming language, the Rakudo Perl 6 compiler, related test suite, infrastructure and tools. At his employer, noris network AG, he introduced continuous delivery for many in-house developed applications, and now wants to share his experience with the wider world.
Textul de pe ultima copertă
Write good regexes and parsers with the Perl 6 programming language. You’ll see how regexes are used for searching, parsing, and validation: in particular the grammar extension makes them uniquely suitable for parsing, the main focus of this book. Written by Perl 6 expert Moritz Lenz, a core contributor of Rakudo, Parsing with Perl 6 Regexes and Grammars starts from the very basics of regular expressions, and then explores how they integrate with regular Perl 6 code. Then follows a deeper exploration of how regexes work under the hood and a discussion of common techniques for constructing regexes and exploring the data under scrutiny. Later material goes beyond relatively simple formats to reusable named regexes and grammars, which permit code reuse in grammars, and shows how to write parsers for more involved data formats. Error reporting and case studies wrap up the topic.
While regexes allow you to search for patterns in text andvalidate input, Perl 6 regexes advance that concept: you’ll see how they are easier to read, yet much more powerful, than the traditional "Perl-compatible regular expression". With improved reusability and backtracking control, you will be able to write complete parsers with the help of this book.
You will:
- Discover the building blocks of Perl 6 regexes
- Handle regex mechanics and master useful regex techniques
- Extract data and work with patterns among these use cases
- Reuse named regexes and other grammars as components or templates
- Write full parsers, including advanced error reporting and data extraction
- Learn how to parse nested scopes and indention-based formats
Caracteristici
Explores the three primary use cases for Perl 6 regexes: searches, validations, and parsing Shows you how to master regex techniques Teaches how to reuse named regexes as templates