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 331 - 361 of 3462   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
331
Good morning. If you post the entire grammar, I will be glad to take a look at it. - Devin Cook...
devindcook
Online Now
Feb 4, 2004
8:31 am
332
I'm using the GoldParser.DLL found in the SourceForge Files and made a front end that parses ok but I don't know how to get the output ie make a parse tree to...
Rob Lorimer
roblorimer
Offline Send Email
Feb 4, 2004
7:39 pm
333
If you don't mind reading C#, I would suggest browsing through my CVS files (you can use SourceForge's anonymous web-based View CVS from the Project page)....
Max Battcher / WorldM...
world_maker
Offline Send Email
Feb 5, 2004
3:50 am
334
I have i similar Question about the syntax-parsing. In the VB5-Interpreter example is the line "Log "SYNTAX ERROR. Line " & .CurrentLineNumber & ". It...
namani@...
tar294
Offline Send Email
Feb 5, 2004
11:24 am
335
I never implemented column tracking in the ActiveX DLL. This functionality could be added without much work though. Have a great day, - Devin Cook ... From:...
Devin Cook
devindcook
Online Now Send Email
Feb 5, 2004
4:13 pm
336
.CurrentCoumnNumber is very useful when using the dll for Syntax-Parsing because then the cursor could easily be programmed to jump to the exact position. I...
namani@...
tar294
Offline Send Email
Feb 5, 2004
10:45 pm
337
I have two grammar questions I wonder if anyone can help with -- they're probably pretty basic, but I'd like to know what options might exist... 1) How do I...
codejeu
Offline
Feb 6, 2004
3:40 am
338
1) It sounds as if you could probably simply use a Regular Expression to get the information you wanted. You could also write the full grammar, and then just...
Max Battcher / WorldM...
world_maker
Offline Send Email
Feb 6, 2004
6:46 am
339
I downloaded GOLD 2.1.1 today and just installed it (Win ME). Unfortunately the icon's are tranparent they have the magenta background. Oops I tested with the...
Mat Hounsell
mat_geek
Offline Send Email
Feb 8, 2004
2:07 am
340
It works fine on WIN XP. Computed the same Gramma in 1 Minute 45 Seconds and parsed the 486 line test file in 5 seconds. It makes it far more pratical then the...
Mat Hounsell
mat_geek
Offline Send Email
Feb 8, 2004
11:59 pm
341
How does one compose a grammer for csv files? Specifically, where fields are sometimes encapsulated in quotes and at others without! Here's an example: ...
Rob Lorimer
roblorimer
Offline Send Email
Feb 9, 2004
8:13 am
342
CSV is easy enough to do with basic string manipulation tools (the reason for CSV's existence in the first place) that I don't see a need for a grammar. ...
Max Battcher / WorldM...
world_maker
Offline Send Email
Feb 9, 2004
3:43 pm
343
The example is different to 'normal' csv I guess a grammar is not the a suitable way to parse this. 1) Fields may or MAY NOT be in quotes. (exception is that...
Rob Lorimer
roblorimer
Offline Send Email
Feb 9, 2004
9:22 pm
344
Hi All, I am trying to find out the grammar of the PowerScript used by Sybase's Power Builder, and have the following problem: The PowerScript is a line-based...
Truong Trung Dung
kapd_be_a_fa...
Offline Send Email
Feb 10, 2004
11:21 pm
345
... I'm not sure about mixing them into one grammar, others on this list would be able to help you there. However you could pre-process the input placing all...
ejames2
Offline
Feb 11, 2004
3:54 pm
346
Hi! I'm trying to write an SQL parser that supports unicode. I downloaded the parser builder, the SQL-89 grammar and the C++ Engien by Manuel Astudillo. First...
ggrossbe
ggrossbe@...
Send Email
Feb 12, 2004
1:55 pm
347
Dear Mr. Cook, can I expect that in the near future this column tracking in the DLL will be implemented because i am working at a grammar for the...
namani@...
tar294
Offline Send Email
Feb 18, 2004
3:25 pm
348
Hi! As I already wrote before I'm trying to parse Unicode with the GOLD Parser. Unfortunately I cannot test a single unicode file with the Parser Builder...
ggrossbe
Offline Send Email
Feb 24, 2004
12:18 pm
349
Hi! I'm trying to parse SQL with GOLD Parser. First I used the SQL-89 grammar from Devin Cook. But it is not very elaborate and fails to handle e.g. select...
ggrossbe
Offline Send Email
Feb 24, 2004
5:43 pm
350
Hello, This email message is a notification to let you know that a file has been uploaded to the Files area of the GOLDParser group. File : /Examples of...
GOLDParser@yahoogroup...
Send Email
Feb 26, 2004
2:02 am
351
Dear Devin, could you please add new symbol kind to your great program which describes preprocessing directive? It will be very nice feature which let me...
adaskothebeast
Offline Send Email
Mar 1, 2004
1:58 pm
352
You can simulate it via the lexer (DFA states). I posted a code sample earlier. Similar to how a string begins and ends with "" you create a ...
Max Battcher / WorldM...
world_maker
Offline Send Email
Mar 1, 2004
6:00 pm
353
Hello Mr. Battcher, I try to avoid bloating my grammar. I write my IT certificate about fractals and there are many public resources on fractal formulas in the...
adaskothebeast
Offline Send Email
Mar 1, 2004
9:25 pm
354
... Whole different can of worms there. Most people who complain about this are not using line-based grammars. Something like: <NL> := NewLine ... --Max...
Max Battcher / WorldM...
world_maker
Offline Send Email
Mar 1, 2004
10:27 pm
355
Yes, it works with UltraFractal formulas (grammar is line based) but Chaos Pro uses language similar to C (grammar is not line based) but now after some test I...
adaskothebeast
Offline Send Email
Mar 1, 2004
10:43 pm
357
Sorry about the delay. The Builder creates files that support the full Unicode character set; however, the testing tool is very limited. - Devin ... From:...
Devin Cook
devindcook
Online Now Send Email
Mar 3, 2004
8:52 pm
358
That's a really clever approach. Wow. I would have never thought of that. ... From: Max Battcher / WorldMaker [mailto:me@...] Sent: Monday, March...
Devin Cook
devindcook
Online Now Send Email
Mar 3, 2004
9:01 pm
359
Again. Sorry about the delay in responding. I'm trying to parse SQL with GOLD Parser. ... Very true. The grammar is very far from elaborate. You can modify the...
Devin Cook
devindcook
Online Now Send Email
Mar 3, 2004
9:23 pm
360
Hi guys Just started using the GoldParser and I am VERY impressed - an awesome piece of work. I am building a parallel language for .NET, but have come across...
fthanks
Offline
Mar 5, 2004
3:15 am
361
Sounds fine if it works for you. Personally, I would suggest making the BEGIN and END tokens reasonable things that the programmer could use him/herself....
Max Battcher / WorldM...
world_maker
Offline Send Email
Mar 5, 2004
3:50 am
Messages 331 - 361 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