Skip to content

Latest commit

 

History

History
10 lines (8 loc) · 549 Bytes

racket.md

File metadata and controls

10 lines (8 loc) · 549 Bytes

Racket regexp

Racket has two regular expression syntaxes, regexp, which is like Unix egrep, and pregexp, which is like Perl. Separate procedures compile regexps that operate on strings or byte strings. Literal and printed regexps start with #rx or #px. It uses backtracking.

Regular expressions are specified in The Racket Reference, including the grammars and a type system for semantic constraints, and introduced in The Racket Guide.