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...
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)....
I have i similar Question about the syntax-parsing. In the VB5-Interpreter example is the line "Log "SYNTAX ERROR. Line " & .CurrentLineNumber & ". It...
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:...
.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...
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...
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...
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...
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...
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: ...
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. ...
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...
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...
... 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...
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@...
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...
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...
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...
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...
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...
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...
... Whole different can of worms there. Most people who complain about this are not using line-based grammars. Something like: <NL> := NewLine ... --Max...
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...
Sorry about the delay. The Builder creates files that support the full Unicode character set; however, the testing tool is very limited. - Devin ... From:...
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...
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...
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....