in reply to Re: PRD parser problem: How to deal with mutiple lines
in thread PRD parser problem: How to deal with mutiple lines
But I still can not parse the multiple-lined contents inside the description brackets.List: 'SECTION_START' SECTION_NAME SECTION_CONTENT 'SECTION_END' |<error> SECTION_NAME: /\w+/ {print "section name is $item[1]\n";} |<error> SECTION_CONTENT: Description | Description: 'DESCRIPTION' '=' Statement |'DESCRIPTION' '=' '{' Statement(s?) '}' ';' Statement: /.+\n/
How can I do to solve it?section name is BANK001 section name is BANK002 section name is BANK003 Invalid List: Was expecting 'SECTION END' but found "UK BANK; " instea +d
|
---|
Replies are listed 'Best First'. | |
---|---|
Re^3: PRD parser problem: How to deal with mutiple lines
by philcrow (Priest) on Jun 17, 2008 at 14:53 UTC |