KO
|
EN
gitlite — search
Search
#javascript
#python
#hacktoberfest
#react
#ai
#typescript
#llm
#go
#golang
#android
#machine-learning
#rust
#deep-learning
#linux
Regex
★ 17
Open GitHub ↗
A little regex engine
Download README (.md)
Explore Similar Repositories
projector.js
:
Inter- and Audioactive VJ Software for Chrome 23+
pwned
:
Simple C++ code for simple tasks
symbol
:
typed lisp adventure
tarsnap-backup-osx
:
A shell script and launchd config file to run daily backups on specified directories to tarsnap
fakesome
:
The fake data generator
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
Regex
?
Download (.md)
# Regex A parody of http://code.google.com/p/re1/ with the intention to provide a simple, concise and constructive regex engine implementation. The parser part is a proof-of-concept design employing Shunting-yard algorithm to illustrate to feasibility to process unary operators and surrounds like parentheses. # Syntax a? match 1 or 0 times a* match 0 or more times a+ match 1 or more times a?? match 1 or 0 times, not greedily a*? match 0 or more, not greedily a+? match 1 or more, not greedily . match any character | alternative (a) capturing parentheses # Build make # Usage ./main '(ray|yar)' 'hello, ray'