RegexBuilder API ReferenceΒΆ

  • Flags
    • ASCII Only Matching
    • Display Debug Information
    • Ignore Case
    • Multi Line
    • Dot All
    • Verbose
  • 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()

Quick search

Table of Contents

  • Edify
  • Pre-Built Pattern API Reference
  • RegexBuilder API Reference
    • Flags
    • RegexBuilder
  • Contributing
  • Authors
  • Changelog

This Page

  • Show Source
©2022-2026, Bobby. | Powered by Sphinx 9.1.0 & Alabaster 1.0.0 | Page source