Y
Hacker News
new
|
ask
|
show
|
jobs
by
angara
2705 days ago
Regular expressions are also useful for lexing. I like to work from this example code from the Python standard library docs:
https://docs.python.org/3.6/library/re.html#writing-a-tokeni...
1 comments
fanf2
2703 days ago
Remember, `lex` is just a pile of regular expressions, so it is great for simple parsing in C. There are good reasons it was known as the Swiss Army knife of Unix before scripting took over :-)
link