Explore >> Select a destination


You are here

swtch.com
| | raganwald.com
1.9 parsecs away

Travel
| |
| | rdrr.io
2.6 parsecs away

Travel
| | [AI summary] This document explains the use of regular expressions in R, covering both extended and Perl-like regular expressions with their syntax, metacharacters, and applications.
| | nitely.github.io
2.1 parsecs away

Travel
| | 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.
| | vmx.cx
23.9 parsecs away

Travel
| [AI summary] The author discusses creating a WASM binary with multi-value returns using Rust, overcoming challenges with tooling and FFI safety issues.