Library Preview: Regex
Pattern matching, parsing, oh my!
What separates toy projects from fully-fledged programming languages? There are a number of valid answers to this question, but I think that a major one is the strength of its standard library. A powerful and fleshed-out standard library makes it quick and easy to do common tasks without having to reinvent the wheel at every turn. One such task is seemingly simple: recognizing simple patterns in strings. Most major modern programming languages come with a standard way of doing this, known as regular expressions. While these libraries may be straightforward to use, they’re anything but straightforward to implement! Consequently, it is essential for languages to save users from having to roll their own versions of this functionality for each of their needs.
I am proud to announce the Regex
module‘s inclusion in Grain’s standard library in the upcoming 0.4.3
release (also available now on main
). This milestone is particularly exciting for a number of reasons:
First, most overtly, this module provides an easy way of matching simple patterns in strings:
The full documentation can be found here, but this library should be very useful for building even more nifty features in the future, such as the tokenization needed for JSON support.
In addition, this library marks a soft milestone in Grain’s maturity: it’s one of the most complex things which has been written in the language so far, and it is written entirely in standard Grain! It packs a regular expression parser (so we can understand what pattern you’re trying to match) and matching engine, all written in a Grain module with no foreign host functions! It is far and away the largest module in the standard library:
This module landing in the standard library continues to demonstrate our vision—writing complex programs in Grain is both possible and fun, and features like this make it easier and easier. We’re constantly improving Grain’s standard library, and you can help too!
A huge thank you to the Grain Core Team for all of the code reviews and bug squashing which went into making this happen. I’m pumped to see what we can land in the standard library next!