Skip to content

johnny423/regi

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Regi

Regi is a lightweight Rust library for exact pattern matching within strings using regular expressions.

Features

  • Search for the exact occurrence of a pattern within a given haystack string.
  • Supports simple regular expressions include
    • wildcards - like '.', '\d', '\w', '\t'.
    • any and not any - '[abc]', '[^abc]'.
    • at-least-one and zero-or-one matchers - 'a+', 'a?'
    • or - (a|b)
    • starts and ends - '^abc', 'abc$'

About

Rust implementation of regular expressions

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages