-
Notifications
You must be signed in to change notification settings - Fork 27
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
REPP tokenizer #43
Comments
+1 Reading From Rebecca's code, reading the LISP |
The ReppTop page says the LKB uses a different regex engine, but both are Perl compatible (PCRE). Rather than Python's re module, the regex module seems like it has better Perl compatibility. |
Following up on engine choice: regex is more PCRE than re, but I am using re's internals (from the sre_parse module) to analyze the replacement patterns for characterization and string expansion purposes, so it's not as easy as just swapping out the engine. Also note that there is python-pcre for actual PCRE, but it hasn't been updated in a while. For now I will just use the regular |
Make a module that reads
.repp
files and tokenizes strings, without firing up a parser. See here: http://moin.delph-in.net/ReppTopThe text was updated successfully, but these errors were encountered: