Completed
APL for processing text data
Class Central Classrooms beta
YouTube videos curated by Class Central.
Classroom Contents
Text Processing in APL - Data-Parallel and Idiomatic Parsing Techniques
Automatically move to the next video in the Classroom when playback concludes
- 1 APL for processing text data
- 2 Most text parsing tasks result in a structured model such as a tree
- 3 Regular expressions regex are convenient but limited
- 4 Parsing expression grammars are recursive
- 5 Issues with a recursive parser
- 6 Performance of recursive parsers
- 7 How to do data-parallel, idiomatic parsing
- 8 Balanced parentheses example
- 9 High level overview of the new co-dfns parser
- 10 Link variables to their bindings example
- 11 Parsing strands example
- 12 Notes on flexibility, maintainability and performance