v0.1.0 - First Release
2022-09-10:
This is the very first release of edify. Here's an overview of functions:
-
- Flags
- RegexBuilder
- .any_char()
- .whitespace_char()
- .non_whitespace_char()
- .digit()
- .non_digit()
- .word()
- .non_word()
- .word_boundary()
- .non_word_boundary()
- .new_line()
- .carriage_return()
- .tab()
- .null_byte()
- .any_of()
- .capture()
- .named_capture(name)
- .named_back_reference(name)
- .back_reference(index)
- .group()
- .end()
- .assert_ahead()
- .assert_not_ahead()
- .assert_behind()
- .assert_not_behind()
- .optional()
- .zero_or_more()
- .zero_or_more_lazy()
- .one_or_more()
- .one_or_more_lazy()
- .exactly(n)
- .at_least(n)
- .between(n, m)
- .between_lazy(n, m)
- .start_of_input()
- .end_of_input()
- .any_of_chars(chars)
- .anything_but_chars(chars)
- .anything_but_string(string)
- .anything_but_range(start, end)
- .string(s)
- .char(c)
- .range(start, end)
- .subexpression(expr, opts)
- .to_regex_string()
- .to_regex()