Skip to content

v0.1.9

Compare
Choose a tag to compare
@Solarden Solarden released this 25 May 11:59
· 4 commits to main since this release
a0cbc14

First release 🎉

  • One can compile or return regex pattern
  • Updated docs

New functionalities:

  • none_or_many(what: RegEx) -> RegEx
  • one_or_more(what: RegEx) -> RegEx
  • none_or_one(what: RegEx) -> RegEx
  • any_of_char(items: str) -> RegEx
  • regex_range(min: str, max: str) -> RegEx
  • group(what: RegEx, name=None, non_capturing=False) -> RegEx
  • look_ahead(what: RegEx, negative=False) -> RegEx
  • look_behind(what: RegEx, negative=False) -> RegEx
  • any_of_characters(regex_list: List[str]) -> RegEx
  • times(what: RegEx, min: int, max: int = None) -> RegEx
  • repeat(what: RegEx, count: int) -> RegEx
  • negate(what: RegEx) -> RegEx

You can find more information in documentation.