Search the web
Sign In
New User? Sign Up
GOLDParser · GOLD Parsing System
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Show off your group to the world. Share a photo of your group with us.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 513 - 542 of 3462   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
513
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...
Anders
ameissuperguru
Offline Send Email
Jul 1, 2004
7:03 am
514
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...
Anders
ameissuperguru
Offline Send Email
Jul 1, 2004
7:26 am
515
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...
ejames2
Offline
Jul 3, 2004
1:23 pm
516
just running into problem with the delphi engines. if i use: {paramschar} = {Ansi Printable} - [{}$] then the GoldBuilder (and also the activex engine)...
stemu2000
Online Now Send Email
Jul 3, 2004
3:58 pm
517
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@...
Send Email
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}...
Devin Cook
devindcook
Online Now Send Email
Jul 6, 2004
2:55 am
519
can I find somewhere?...
ventzy_kunev
Offline Send Email
Jul 9, 2004
7:49 am
520
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} - [<>''"=] -...
ventzy_kunev
Offline Send Email
Jul 9, 2004
9:14 am
521
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...
Devin Cook
devindcook
Online Now Send Email
Jul 9, 2004
10:34 am
522
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...
ventzy_kunev
Offline Send Email
Jul 9, 2004
4:54 pm
523
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 {},...
akhailtash
Offline Send Email
Jul 13, 2004
1:46 pm
524
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...
akhailtash
Offline Send Email
Jul 13, 2004
1:47 pm
525
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...
Max Battcher
world_maker
Offline Send Email
Jul 13, 2004
2:38 pm
526
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...
compurun3000
Offline Send Email
Jul 13, 2004
4:20 pm
527
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...
compurun3000
Offline Send Email
Jul 13, 2004
4:24 pm
528
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. ...
Max Battcher
world_maker
Offline Send Email
Jul 14, 2004
12:31 am
529
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...
ventzy_kunev
Offline Send Email
Jul 14, 2004
2:50 pm
530
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 ...
compurun3000
Offline Send Email
Jul 14, 2004
5:16 pm
531
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...
Devin Cook
devindcook
Online Now Send Email
Jul 15, 2004
9:03 am
532
... If I remember correctly, Lex resolves conflicts between terminal definitions by favoring the first declared in the file. GOLD, on the other hand, resolves...
Devin Cook
devindcook
Online Now Send Email
Jul 15, 2004
9:04 am
533
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...
Devin Cook
devindcook
Online Now Send Email
Jul 15, 2004
9:31 am
534
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...
peymanmaryam
Offline
Jul 15, 2004
2:53 pm
535
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@...
Send Email
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@...
Send Email
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@...
Send Email
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...
ventzy_kunev
Offline Send Email
Jul 17, 2004
6:29 am
539
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:...
Devin Cook
devindcook
Online Now Send Email
Jul 17, 2004
6:37 am
540
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: ...
Arca Artem
ArcaArtem
Offline Send Email
Jul 20, 2004
11:10 am
541
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....
Devin Cook
devindcook
Online Now Send Email
Jul 21, 2004
5:32 am
542
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...
Devin Cook
devindcook
Online Now Send Email
Jul 21, 2004
5:32 am
Messages 513 - 542 of 3462   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help