grimace: a fluent regular expression generator in Python

B

Ben Last

Hi all

I'd be interested in comments on a fluent regular expression generator I've
been playing with (inspired by the frustrations of a friend of mine who's
learning).

The general use case is to be able to construct RE strings such as:

r'^\(\d{3,3}\)-{1,1}\d{3,3}\-{1,1}\d{4,4}$' (intended to match North
American phone number)

as:

from grimace import RE
north_american_number_re = (RE().start

..literal('(').followed_by.exactly(3).digits.then.literal(')')

..then.one.literal("-").then.exactly(3).digits

..then.one.dash.followed_by.exactly(4).digits.then.end
.as_string())

The intent is to provide clarity: since the strings would normally be
generated and compiled when a module is first imported, there's minimal
overhead.

It's on github at https://github.com/benlast/grimace and the first blog
post that explains it is here: http://benlast.livejournal.com/30871.html (I've
added to it since then).

Tests are the best explanation, and they're in the __init__ at the end so
that they're self-executing if the init is executed.

I'm thinking about other features to implement, and more use cases would be
welcome.

Cheers
ben
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,756
Messages
2,569,535
Members
45,008
Latest member
obedient dusk

Latest Threads

Top