suggestions for VIN parsing

Tim Chase python.list at tim.thechases.com
Thu Dec 25 22:18:25 EST 2014


On 2014-12-25 19:58, Vincent Davis wrote:
> Any comment on using pyparsing VS regex

If the VIN had any sort of regular grammar (especially if it involved
nesting) then pyparsing would have value.

I defaulted to regexp (1) because it's available out of the box, and
(2) while it might be overkill, it was a lazy way to capture the
information needed. 

-tkc





More information about the Python-list mailing list