Hello! I have just discovered GOLD Parser and this maybe my way into parsing! I don't set out to create a new/old programming language. The things I need to...
Hello! I have just started to create a grammar for HPGL/2 using GOLD Parser Builder(GPB). I have no experience with GOLD Parser, BNF, Parsing, ... I have...
I found something elsewhere in the code that caused garbage collection to take place inside the parser, making it look like it was the parsers fault when it...
just running into problem with the delphi engines. if i use: {paramschar} = {Ansi Printable} - [{}$] then the GoldBuilder (and also the activex engine)...
Hello. I´m a very newbie in the parser building world, and of course in Gold Parser. Well, in my first steps I´m trying to reproduce the examples found in...
agut55
agut@...
Jul 5, 2004 11:22 pm
518
Single quotes can be specified by two in the grammar. The definition: String = '' {String Char}* '' is equivalent to String = {#39}{String Char}*{#39}...
I make those steps 1. in GPB (v 2.3) open HTML.grm from "GOLD Parser Grammars" page 2. substitute this {Symbol Chars} = {Printable} - {Letter} - [<>''"=] -...
I tried to reproduce the problem, but it parsed correctly. What version of Windows and the Engine are you using? [Non-text portions of this message have been...
I am using WinXP Pro SP1 my regional settings are set to Bulgarian... maybe the problem has some relation with languages or something... readme file in GP's...
I am new to GoldParser. I find it a very usefull tool and very well done. The only thing it needs is support for EBNF syntax (shorthand for ()+, ()* or {},...
One last note. I would like to be able to set the language to be case-insensitive, but still be able to define case-sensitive terminlas. Does this make...
EBNF was chosen not to be used because it breaks some of the correspondence between rules in the Grammar file and rules in the CGT. As for debugging, it will...
I used Gold Parser ActiveX written on Visual Basic, and it worked fine. However, When I put some Unicode symbols like Ñ into my parsing string I got...
I used Gold Parser ActiveX written on Visual Basic, and it worked fine. However, When I tried to put some Unicode symbols like (alt-165) into my parsing string...
To mix case-sensitive and insensitive _keywords_ you'd have to explicitly declare all of your terminals, as you couldn't rely on the auto declaration. ...
I'am looking for PHP grammar in GP. I didn't saw it anywhere, but found such grammar for sableCC (http://sablecc.org/). I doubd that there is program which...
I used Gold Parser ActiveX written on Visual Basic, and it worked fine. However, When I tried to put some Unicode symbols like 'alt-165' or AscW(209) into my ...
I'm not 100% sure that character is created by alt-165 on your system. The character values above 127 vary from country to country based on their version of...
... If I remember correctly, Lex resolves conflicts between terminal definitions by favoring the first declared in the file. GOLD, on the other hand, resolves...
First off, I would like to apologize for the HUGE delay in responding to this e-mail. I accidently put a copy in my "Draft" folder rather than my outbox. Do...
Hi I want to prse c++ or java source codes to extract operator and kewords used in them such as ``++`` or ``template`` and to generate parse trees . Is Parse...
Hi Guys, I have to write a programm which parses 100.000 sql-statements und should extract the attributes, tables and the relations of its. I want to use java...
pft401al
pft401al@...
Jul 16, 2004 11:32 am
536
Hi Guys, I search a grammar-file for SQL99. I only need the part of the SELECT-statements. Has anybody an idea where I can download this? Thanks....
pft401al
pft401al@...
Jul 16, 2004 11:35 am
537
Hi Guys, how can I use this DLL in my C++ project?? - include - methods for getting the data I am thankful for every example I get....
pft401al
pft401al@...
Jul 16, 2004 11:39 am
538
I have a little problem number = {Digit} <Program> ::= <Statement> <Statement> ::= if <Expression> then <Statement> |';' <Expression> ::= number '+' number I...
You don't have identifiers in your grammar? Is so, the forementioned case would cause a syntax error (since If1 is an identifier). - Devin ... From:...
to have something like a 'comment' field for the rules in the program temlpates on the future versions of this program? Here's what I mean: My grammar is: ...
GOLD has a Visual C++ implementation. The primary goal of a parser is to analyze a source string (which may be a buffer or file) and then create a parse tree....
I have considered the ability to add "tags" to the grammar for a while now. The CGT file has a number of "reserved" entries that can be used to accomodate a...