Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm trying to create ANTLR grammar that will parse the following input:

@code 123 some arbitrary text

I would like to split it onto three tokens: @code, 123 and any text after the space.. It should be something very simple, but I can't understand how to make it working..

share|improve this question
Is it a hard requirement to use ANTLR? It looks like you could use a regex. If you do need ANTLR, does the arbitrary text need to be split into tokens or a single token? – Matthew Sowders Mar 15 '11 at 23:13

2 Answers

It doesn't sound like a good problem for antlr.

You can define tokens like AT : @[a-z+], NUMBER : [0-9]+ WORD : [a-z]+ and SIGNIFICANT_SPACE : [ ]+ WS : [\n] {skip();}

Then a grammar like ,

AT NUMBER [SIGNIFICANT_SPACE | WORD] +

and reconstruct the word and spaces, but it seems wrong.

You may also look at the filter option in antlr. You can use it to parse part of the input, then examine the character ranges of the tokens to get the parts of the line that were filtered out.

share|improve this answer

This is very simple.

program : start ID end;

start : '@' ID;

end : ANYTHING;

ID : ('a'..'z'|'A'..'Z'|'_') ('a'..'z'|'A'..'Z'|'_'|'0'..'1')*;
ANYTHING : .*;
WS : (' '|'\n'|'\r'|'\t')+ {$channel = HIDDEN;};

Other than that, you just need to expand on the rules to suit your purposes.

This should work with ANTLR3, but I don't know about ANTLR2.

share|improve this answer
For me this fails with "The following alternatives can never be matched: 1", referring to the line "ANYTHING : .*". – Rob N Jan 20 '12 at 23:30

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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