[antlr-interest] Problems with lexer/grammar rules

Mauro Pellicioli nightwolf at email.it
Sun Aug 19 02:21:27 PDT 2007


Hi everyone, I\'ve tried this simple grammar:


grammar Imdb;
@header {
package grammatiche;
}
@lexer::header {
package grammatiche;
}
document: (WS)* \'<html>\' (WS)* head (WS|COMMENT)* BODY (WS)* \'</html>\'
(WS)*;
head : \'<head>\' (WS|title|META|LINK)+ \'</head>\';
title:\'<title>\' STRING \'</title>\';
META:\'<meta\' (options {greedy=false;} : .)* \'>\';
LINK: \'<link\'(options {greedy=false;} : .)* \'>\';
BODY: \'<body\' (options {greedy=false;} : .)*\'</body>\';
STRING:(\'0\'..\'9\'|\'a\'..\'z\'|\'A\'..\'Z\'|\' \'| \'\\\'\'
|\'#\'|\'.\'|\':\'|\';\'|\'&\'|\',\'|\'-\'|\'!\'|\'(\'|\')\')+;
WS : \' \' | \'\\r\' | \'\\n\' ;



on the html page http://www.imdb.com/find?s=all&q=taxi+driver (see source
with the browser),it doesn\'t work and gives this error message:



line 7:0 mismatched input \' \' expecting \'</head>\'
line 8:0 mismatched input \' \' expecting BODY

while the same grammar with all lexer rules:



grammar Imdb;
@header {
package grammatiche;
}
@lexer::header {
package grammatiche;
}
document: (WS)* \'<html>\' (WS)* HEAD (WS|COMMENT)* BODY (WS)* \'</html>\'
(WS)*;
HEAD : \'<head>\' (WS|TITLE|META|LINK)+ \'</head>\';
TITLE:\'<title>\' STRING \'</title>\';
META:\'<meta\' (options {greedy=false;} : .)* \'>\';
LINK: \'<link\'(options {greedy=false;} : .)* \'>\';
BODY: \'<body\' (options {greedy=false;} : .)*\'</body>\';
COMMENT:   \'<!--\' (options {greedy=false;} : .)* \'-->\';
STRING:(\'0\'..\'9\'|\'a\'..\'z\'|\'A\'..\'Z\'|\' \'| \'\\\'\'
|\'#\'|\'.\'|\':\'|\';\'|\'&\'|\',\'|\'-\'|\'!\'|\'(\'|\')\')+;
WS : \' \' | \'\\r\' | \'\\n\';

works fine; I want to make \'head\' and \'title\' parser rules because I
need an action to store \'STRING\' value (the title of the HTML page) in a
parser local variable and then return it to \'document\' caller. How i
should proceed?

Thanks for help. 
 --
 Email.it, the professional e-mail, gratis per te: http://www.email.it/f
 
 Sponsor:
 In REGALO un GIOCO! Scegli GPBikes 3D,Bubble Boom, Rock City Empire
 Clicca qui: http://adv.email.it/cgi-bin/foclick.cgi?mid=6732&d=20070819

-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://www.antlr.org/pipermail/antlr-interest/attachments/20070819/4d10a6fe/attachment.html 


More information about the antlr-interest mailing list