-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
16 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
Matching Regular Expressions with OCaml Patterns | ||
|
||
This syntax extension turns | ||
|
||
match%pcre x with | ||
| {|re1|} -> e1 | ||
... | ||
| {|reN|} -> eN | ||
| _ -> e0 | ||
|
||
into suitable invocations to the ocaml-re library. The patterns are plain | ||
strings of the form accepted by `Re_pcre`, except groups can be bound to | ||
variables using the syntax `(?<var>...)`. The type of `var` will be | ||
`string` if a match is of the groups is guaranteed given a match of the | ||
whole pattern, and `string option` if the variable is bound to or nested | ||
below an optionally matched group. |