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...
Message search is now enhanced, find messages faster. Take it for a spin.

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 439 - 468 of 3462   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
439
Hello everyone, A number of users are having trouble with the GUI library that is used to display the graphic buttons and autoresize the forms. This is...
Devin Cook
devindcook
Online Now Send Email
May 4, 2004
9:01 am
440
Hi. I have a trouble with grammar. I have part of grammar definition for sql select statement: !------------ Grammar "Name" = 'SQL SELECT' "Version"...
ken_nikl
ken_nikl@...
Send Email
May 5, 2004
6:31 am
441
Ok... I need to define a grammar that does the following. I need to parse certain custom tag types out of an html file while maintaining the remaining text...
Jason Southwell
deadseriousa...
Offline Send Email
May 7, 2004
1:53 am
442
Two ways: 1) You can use the new virtual terminals and let a "stupid parser" eat all of the text to the point where you want to start parsing, and all the text...
Max Battcher / WorldM...
world_maker
Offline Send Email
May 7, 2004
11:36 am
443
... HTMLChar set Thanks, I'll start down this path first. I'm sure I'll have questions and I'll be sure to post the final grammar when I get it....
Jason Southwell
deadseriousa...
Offline Send Email
May 7, 2004
11:19 pm
444
... HTMLChar set ... characters. ... I built a grammar around this, but something else must be wrong. I'm getting an EOF expected after the second character....
Jason Southwell
deadseriousa...
Offline Send Email
May 8, 2004
10:43 am
445
Before I start considering rolling my own version of TestGrammar.exe I thought I might spark up some discussion... The problem I'm looking at is that...
Max Battcher / WorldM...
world_maker
Offline Send Email
May 9, 2004
10:56 am
446
I've just uploaded to the SourceForge site (golddotnet.sf.net) my latest GOLD-oriented utility app, GUnit. This is an idea I've had for some time, so it's...
Max Battcher / WorldM...
world_maker
Offline Send Email
May 10, 2004
3:21 am
447
... Excellent! I look forward seeing it! ... Very true. ... Excellent idea. When I release a new version of the testgrammar program, the output will be sent to...
Devin Cook
devindcook
Online Now Send Email
May 10, 2004
7:49 am
448
Hi {Id Ch Standard} = {Alphanumeric} + [_] {Hex_Digit} = {Digit} + [abcdefABCDEF] !-------- HexLiteral1 = ['hH']''{Hex_Digit}+'' HexLiteral2 =...
"Roman Bondarenko"
bondlab@...
Send Email
May 10, 2004
5:54 pm
449
... The Standard Out ability can be recaptured by using a batch file. For instance, it can contain: echo off testgrammar -trim %1 %2 %3 print %3 << The thing...
Max Battcher / WorldM...
world_maker
Offline Send Email
May 10, 2004
6:42 pm
450
Take a random example: ABCDEH What do you think it is, Hex or Id? To the computer it could be either a HexLiteral3 or an Id, and when it has such a conflict...
Max Battcher / WorldM...
world_maker
Offline Send Email
May 10, 2004
6:57 pm
451
Hi {Id Ch Standard} = {Alphanumeric} + [_] {Hex_Digit} = {Digit} + [abcdefABCDEF] !-------- HexLiteral1 = ['hH']''{Hex_Digit}+'' HexLiteral2 =...
bondlab2003
bondlab2003@...
Send Email
May 10, 2004
9:51 pm
452
The definition used for HexLiteral3 can accept a string that can also be accepted by the ID definition. For instance, assume you have the following text: Abh ...
Devin Cook
devindcook
Online Now Send Email
May 11, 2004
1:56 am
453
Hello everyone, I've put togather a simple ZIP file containing a beta of version 2.2.1 of the Builder. The main goal of this version is to correct the "button...
Devin Cook
devindcook
Online Now Send Email
May 11, 2004
5:49 am
454
It is an example for ASM microcontroller Microchip Example of an initial code: INDF EQU H'0000' TMR0 EQU H'0001' PCL EQU H'0002' STATUS EQU...
"Roman Bondarenko"
bondlab@...
Send Email
May 11, 2004
12:48 pm
455
Hi List, I am writing a skeleton for wxGoldParser. An engine based upon the Alexande Rai engine for wxWidgets. Now when I want to generate case statements for...
Jorg121
Offline Send Email
May 13, 2004
2:58 pm
456
I see that yahoo groups truncated my spaces, what I actually get is: case SomeLabel_Symbol_Thing ____________________________________ : Where the ___ is...
Jorg121
Offline Send Email
May 13, 2004
3:02 pm
457
Hi all, I am new in the use of the Gold Parser Builder and I would like to get some advice to speed up my experience with this great parser. I am trying to get...
dannhielo
Offline Send Email
May 17, 2004
5:34 pm
458
In general, the key to Reduce-Reduce and Shift-Reduce issues is in understanding where your grammar has ambiguity. The parsers expect that for any input there...
Max Battcher / WorldM...
world_maker
Offline Send Email
May 17, 2004
7:33 pm
459
But in SQL syntax there are lots of cases in which a nullable or an optional clause is necessary. Does anybody know a workaround so the syntax is properly...
dannhielo
Offline Send Email
May 18, 2004
7:49 am
460
... Currently this cannot be undone. I will add a new program template in the next version of the GOLD Builder. I will probably called the variable...
Devin Cook
devindcook
Online Now Send Email
May 18, 2004
8:08 am
461
... Thanks Devin, Small question / comment. When you are looking at the skeleton code generator, will it be possible to output more then files in the same ...
Jorg121
Offline Send Email
May 18, 2004
10:09 am
462
... Thanks Devin, Small question / comment. When you are looking at the skeleton code generator, will it be possible to output more then files in the same ...
Jorg121
Offline Send Email
May 18, 2004
10:11 am
463
... Thanks Devin, Small question / comment. When you are looking at the skeleton code generator, will it be possible to output more then files in the same ...
Jorg121
Offline Send Email
May 18, 2004
10:13 am
464
Instead of putting multiple skeletons in one file, you can write multiple skeleton files and then use a batch file to run the command line skeleton generator. ...
Max Battcher / WorldM...
world_maker
Offline Send Email
May 18, 2004
1:34 pm
465
I need to parse real numbers (in notation {digit}+ '.' {digit}+) and "tho dots" terminal ('..') - for using pascal-style array declaration. When I tried to...
fj128
fj128@...
Send Email
May 19, 2004
11:58 pm
466
wxGoldParser is an engine for wxWidgets C++. It can run cross platform (makefiles for linux included) on Windows, Linux, Solaris, MacOS, etc. wxGoldParser can...
Jorg121
Offline Send Email
May 21, 2004
11:44 am
467
I need assistance in defining a grammar that requires a single space or a single character at the start of every statement. I am having trouble defining a...
kcoggins
Offline Send Email
May 24, 2004
4:28 am
468
The problem is that it isn't context-free for the DFA. If you want automatic handling of whitespace, what is the difference between a token of "normal" spaces...
Max Battcher / WorldM...
world_maker
Offline Send Email
May 24, 2004
4:56 am
Messages 439 - 468 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