-
Notifications
You must be signed in to change notification settings - Fork 372
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Feature request : regexp #58
Comments
Yes I think this is an important feature. But it is also quite a large project so I might not find the time to do it alone. Currently there are a couple main options. The first option is to wrap an existing C regex library in a Cello like interface. The advantage of this is that it guarantees a stable and well behaved regex implementation. The downside is that it needs to be somehow packaged with Cello and must be portable. Another option is to roll our own from scratch. A third option is that I am currently working on a parser combinator library for vanilla C which I could port to Cello. And this library could be used to construct a regex engine as well as provide a general parsing tool which could also be used for JSON or whatever else. The third option is my current preference although it may take several months or more for everything to fall in place. For now my recommendation to anyone who wants regex like functionality is to look toward the |
Thank you for your answer ! Do you have any documentation about this scan method ? |
+1 for the parser 2013/9/25 Daniel Holden notifications@github.com
Mi twitter: http://twitter.com/garito Temet nosce |
You'd better take a look at http://marcomaggi.github.io/docs/cre2.html |
Well, gcc has regex.h on gnu standards which could be wrapped, but the user would need to compile with gnuXX options. |
Do you plan to implement regexp ?
The text was updated successfully, but these errors were encountered: