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...
Real people. Real stories. See how Yahoo! Groups impacts members worldwide.

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 3314 - 3343 of 3462   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
3314
Hi, I posted a question 3 days ago but it still does not appear in the list. Is this forum active? Thanks!...
kizmailov
Offline Send Email
Apr 7, 2008
7:33 pm
3315
I'm trying to implement grammar for "Dollar-Quoted String Constants" as described in http://www.postgresql.org/docs/8.3/interactive/sql-syntax- ...
kizmailov
Offline Send Email
Apr 7, 2008
7:34 pm
3316
Hi, Has anybody here built or considered building a script interpreter with wwf? It just hit me that it might be possible but I haven't actually ever used wwf...
Kelly Parker
bigblockfw
Offline Send Email
Apr 7, 2008
8:24 pm
3317
This showed up in my junk mail folder. I am using Microsoft IMF with Exchange....
Brian
chowmaster11
Online Now Send Email
Apr 7, 2008
9:26 pm
3318
I solved first part by defining $$ tag string as: {PGStringCh} = {Printable} + {Whitespace} - ['$'] PGString = '$$' ( {PGStringCh}+ | {PGStringCh}+ '$'...
kizmailov
Offline Send Email
Apr 7, 2008
9:32 pm
3319
kelly are you spying on me? I just got finished writing a bunch of workflow code. It would be interesting to do so, but there are some interesting problems...
Spam Catcher
aldousd666
Offline Send Email
Apr 11, 2008
4:15 pm
3320
The problem isn't in the table, but how the engine deals with the table. Since it's a huge list of possibilities, and you merely want to include all of them,...
Spam Catcher
aldousd666
Offline Send Email
Apr 11, 2008
4:22 pm
3321
This is a serious problem because strings should be allowed to accept all Unicode characters and I would encourage engine writers to fix this problem. This is...
Sheffield Maillard
sheffieldmai...
Offline Send Email
Apr 26, 2008
6:55 am
3322
Dear Friend, Hey! I have a found a great PHP Lyrics Script that can really generate excellent money for you. Please visit the link below and see its features. ...
zs_maxi123
Offline Send Email
Apr 26, 2008
6:55 am
3323
I'm not trying to be annoying, just looking for solution. Can anyone answer the question? I hope someone knowledgeable, for example Devin, can answer it from ...
kizmailov
Offline Send Email
Apr 26, 2008
6:55 am
3324
The definition: {String Ch} = {All Valid} + {HT} - ["\] StringLiteral = [L]? '"' ( {String Ch} | '\' {Printable} )* '"' ... will work for all valid Unicode...
Devin Cook
GOLD-Admin@...
Send Email
Apr 26, 2008
11:41 am
3325
I'll take a look at the conversation. At worst case, the terminal definition is ambiguous. This means it cannot be recognized by a regular expression. First...
Devin Cook
GOLD-Admin@...
Send Email
Apr 26, 2008
11:51 am
3326
In the text: RETURN ($1 ~ $q$[\t\r\n\v\\]$q$); Does the binding of the $1 end when it hits the space? - Devin     ________________________________________ ...
Devin Cook
GOLD-Admin@...
Send Email
Apr 27, 2008
2:26 am
3327
'$1' is a postgres sql parameter which is defined as PGparam = '$' {Digit}+ ! dollar sign followed by an integer Thank you for looking at this problem! It...
kizmailov
Offline Send Email
Apr 27, 2008
10:33 pm
3328
I'm having a problem on how to use the Morozov C# template with visual studio.NET, Could someone please state the steps of creating a project using Morozov...
MIRAGE
mirage_ha
Offline Send Email
Apr 27, 2008
10:33 pm
3329
One more quick question, is the text... $1 ~ $q$[\t\r\n\v\\]$q$ ...considered one structure? Or is this seen as $1, ~, $q$, [\t\r\n\v\\], and $q$ - Devin    ...
Devin Cook
GOLD-Admin@...
Send Email
Apr 27, 2008
11:31 pm
3330
Simple Example of gramar: ! ------------------------------------------------- Terminals IdName ={Letter}{Alphanumeric}* !...
goldyeee
Offline
Apr 28, 2008
7:32 am
3331
I am looking for either a site or book that explains Backus-Naur Form. Can anyone recomment a site or book? John...
johnclarke72
Offline
Apr 28, 2008
1:54 pm
3332
Check out his SimpleInterpreter source code. http://www.notebar.com/GoldParser/GoldParserEngine_2.1.zip It is in the Source\SimpleInterpreter subdirectory. ......
Brian
chowmaster11
Online Now Send Email
Apr 28, 2008
6:13 pm
3333
... Sorry, no. According to your own claim a correct choice is shown. The set shown by GOLD is not minimal, which is by design of the output. -manfred...
svv1999
Offline Send Email
Apr 28, 2008
10:13 pm
3334
... Do you have any problems with wikipedia? -manfred...
svv1999
Offline Send Email
Apr 28, 2008
10:21 pm
3335
... No, I don't have any problems with Wikipedia. I was wondering if anyone knew of any other resources. John...
johnclarke72
Offline
Apr 29, 2008
2:54 am
3336
... I don't see any severe science in BNF, because it is just a widely accepted notation for productions. If you recognize more impact, please let all of us...
svv1999
Offline Send Email
Apr 29, 2008
9:18 am
3337
... output. ... I want use Gold Parser for autocomplete purpose in editor, but i can't fill true list of autocomplete words on this type error....
goldyeee
Offline
Apr 29, 2008
6:52 pm
3338
Thank you, I already tried this.But isn't there a way to get the Symbol Table & the Quadruples from the engine?? Brian <chow@...> wrote:...
Mirage
mirage_ha
Offline Send Email
Apr 29, 2008
6:52 pm
3339
First, I never said that it was a "severe science". I only asked if anyone knew of any web sites or books that explain it (in a little more detail than...
johnclarke72
Offline
Apr 29, 2008
6:52 pm
3340
Hello, I thought it would be nice if the Test Grammar screen had a column showing the current parser stack depth. Makes the testing grammar process easier and...
andrew_savinykh
Offline Send Email
Apr 29, 2008
6:52 pm
3341
The symbol table is a private member of the Grammar class in the engine. You would have to modify the source code (grammar.cs) and create a public member(s)...
Brian
chowmaster11
Online Now Send Email
Apr 29, 2008
7:42 pm
3342
The LALR algorithm uses a Follow Set to keep track of which terminals can follow each nonterminal. At the syntax error in your sample program, the system had...
Devin Cook
GOLD-Admin@...
Send Email
Apr 29, 2008
8:15 pm
3343
I will take a look around the Net to see if I can find a great site. As far as books go, the best book on the subject is called the "Dragon Book". ...
Devin Cook
GOLD-Admin@...
Send Email
Apr 29, 2008
9:52 pm
Messages 3314 - 3343 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