|
You are here |
deniskyashif.com | ||
| | | | |
nitely.github.io
|
|
| | | | | Finite Automata is commonly used to efficiently match a Regular Expression (RE) to a given textinput. There are RE engines for submatch extraction based on Non-deterministic Finite Automata (NFA). These algorithms usually return a single match for each submatch, instead of the history of submatches (full parse tree). An NFA can be converted to a Deterministic Finite Automata (DFA) to improve the runtime matching performance. This article describes an algorithm based on DFA that extracts full parse trees from text. | |
| | | | |
swtch.com
|
|
| | | | | ||
| | | | |
danilafe.com
|
|
| | | | | In this post, we tackle the first component of our compiler: tokenizing. | |
| | | | |
blog.8thlight.com
|
|
| | | [AI summary] The blog post discusses the limitations of Test-Driven Development (TDD) in scenarios involving physical interactions, user interface elements, and test support code, emphasizing the need for manual testing and separation of concerns. | ||