Releases: ocaml/ocaml-re
Releases · ocaml/ocaml-re
1.13.3
1.13.2
1.13.1
1.13.0
1.13.0 (30-Sep-2024)
-
Add non raising versions of all [Re.Group] functions (#414, fixes #150)
-
Add support for hex and octal of the form:
\o{...}
and\x{...}
(#403) -
Add support for octal characters using
\0dd
and\ddd
(#402) -
Add support for
\Q...\E
quoted expressions in Pcre and Perl syntax (#401) -
Re.execp and related function raise [Invalid_argument "$function"] when [pos]
or [len] arguments are out of bounds. In 1.12.0, a regerssion was introduced
that raised [Invalid_argument _] from [String.get].
1.12.0
1.11.0
CHANGES:
- Add
Re.group_count
to get the number of groups in a compiled regex (#218) - Add
Re.exec_partial_detailed
to allow resuming searches from partial inputs
(#219) - Re-export
Re.Perl
'sParse_error
andNot_supported
exceptions
in Pcre (#222) - Add support for
DOTALL
flag inRe.Pcre.regexp
(#225) - Add support for named groups (#223)
- Add support for some control characters in
Re.Perl
(#227)