regress

REGex in Rust with EcmaScript Syntax

APACHE-2.0 License

Downloads
5.8M
Stars
164
Committers
11
regress - v0.10.0 Latest Release

Published by raskad 5 months ago

Version 0.10.0 of regress, REGex in Rust with EmcaScript Syntax.

Full Changelog: https://github.com/ridiculousfish/regress/compare/v0.9.1...v0.10.0

regress - v0.9.1

Published by raskad 7 months ago

Version 0.9.1 of regress, REGex in Rust with EmcaScript Syntax.

Full Changelog: https://github.com/ridiculousfish/regress/compare/v0.9.0...v0.9.1

regress - v0.9.0

Published by raskad 8 months ago

Version 0.9.0 of regress, REGex in Rust with EmcaScript Syntax.

Full Changelog: https://github.com/ridiculousfish/regress/compare/v0.8.0...v0.9.0

regress - v0.8.0

Published by raskad 9 months ago

Version 0.8.0 of regress, REGex in Rust with EmcaScript Syntax.

Full Changelog: https://github.com/ridiculousfish/regress/compare/v0.7.0...v0.8.0

regress - v0.7.0

Published by ridiculousfish about 1 year ago

Version 0.7.0 of regress, REGex in Rust with EmcaScript Syntax.

  • Corrected errors when parsing certain invalid quantifiers (@selfisekai #59)
  • Added U+00A0 (NBSP) to whitespace (@HalidOdat #63)
  • Capture groups with the same name now emit parse errors (@raskad #65)
  • Lookbehinds now reject following invalid quantifiers (@raskad #66)
  • Corrected handling of Unicode escapes in capture group names (@sirosen #67)
regress - v0.6.0

Published by ridiculousfish over 1 year ago

Version 0.6.0 of regress, REGex in Rust with EmcaScript Syntax.

regress - v0.5.0

Published by ridiculousfish over 1 year ago

Version 0.5.0 of regress, REGex in Rust with EmcaScript Syntax.

  • Unicode property escape matching like \p{Letter} is implemented
  • Regex parsing may now use any u32 iterator, not simply strings
  • The Unicode flag "u" is now recognized. Unicode is no longer the default; however non-Unicode regular expression support still has some known differences from JavaScript.