vote up 7 vote down star
8

I recall I have read about a parser which you just have to feed some sample lines, for it to know how to parse some text.

It just determines the difference between two lines to know what the variable parts are. I thought it was written in python, but i'm not sure. Does anyone know what library that was?

flag

While extremely vague, this question is, nevertheless, quite interesting. I am also curious as to whether there are such "self-learning" parsers (especially if they are written in python). – shylent May 28 at 16:24
I know it's vague, but I haven't got a clue what to tell more about it. – Ikke May 28 at 16:30
@shylent There doesn't seem to be publicly available code for this problem, but some research has been done: See "An Efficient Learning of Context-Free Grammars" by Sakakibara, PDF at tinyurl.com/nrpmor. – Nathan Kitchen May 28 at 22:56
Thanks for asking this question. I have learned a lot from the responses. – PyNEwbie May 29 at 1:59

3 Answers

vote up 5 vote down check

Probably you mean TemplateMaker, I haven't tried it yet, but it builds on well-researched longest-common-substring algorithms and thus should work reasonably... If you are interested in different (more complex) approaches, you can easily find a lot of material on Google Scholar using the query "wrapper induction" or "template induction".

link|flag
Yeah, this is what I had seen. Not really a parser, but it commes close ;) – Ikke May 28 at 21:26
vote up 1 vote down

If you need end up needing a more powerful parser, ANTLR is great (it is also multi-language, and supports Java, Ruby, C++ as well as Python).

The creator of Python (Guido van Rossum), commented:

I'm actually really liking ANTLR! I have a pretty darn good velocity with...

If you are going to do some great stuff with parsers, then you might consider also using ANTLR Studio (free plugin for Eclipse IDE).

Happy parsing.

link|flag
Thanks, I will look into that one. But actually right now the parsing is really simple. Mostly some static text, with some variable parts in it. – Ikke May 28 at 19:28
vote up 2 vote down

Conceivably you might mean Reverend?

link|flag
No, it's not really what is was looking for. – Ikke May 28 at 19:27

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.