Skip to content

Releases: netguru/SimpleRegEx

v0.1.10

01 Jun 08:11
53b0c6a
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v0.1.9...v0.1.10

v0.1.9

25 May 11:59
a0cbc14
Compare
Choose a tag to compare

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.