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 2422 - 2453 of 3462   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
2422
Hello, I'm looking for a grammar written in BNF to convert a EBNF to a BNF grammar. Any hints/links are highly appreciated. Many thanks in advance Udo...
udoweiksw
Offline Send Email
Jul 1, 2006
7:38 pm
2423
... Actually the feed is crippled: http://www.feedvalidator.org/check? url=http://rss.groups.yahoo.com/group/GOLDParser/rss...
svv1999
Offline Send Email
Jul 3, 2006
8:40 am
2424
I've searched the GP site for a Python grammar but I did not find anything...then I searched this discussion and found that a LALR parser can not parse a...
axilmar
Offline Send Email
Jul 3, 2006
11:29 am
2425
axilmar, In the strictest sense, <bnf> and Gold are designed to work on 'context-free' systems, so the simple answer is that it could not handle levels of...
Bill White
wcwhite42
Offline Send Email
Jul 3, 2006
5:18 pm
2426
Hello axilmar, I've searched the GP site for a Python grammar but I did not find anything...then I searched this discussion and found that a LALR parser can...
WeikEngOff@...
udoweiksw
Offline Send Email
Jul 3, 2006
5:43 pm
2427
Hello, I just want to know whether it's possible to remove a String from a Set, e. g. SET_Test = {Letter}{AlphaNumeric}* - 'MyString' Thanks and greetings Udo...
WeikEngOff@...
udoweiksw
Offline Send Email
Jul 3, 2006
8:25 pm
2428
... LALR(1)-parsing systems can very well handle block-structured languages. Maybe you wanted to say line-based language---and that is not a property of the...
svv1999
Offline Send Email
Jul 3, 2006
8:35 pm
2429
Hello, is there any common approach to determine blocks in a source file, e. g. ANYTEXT Block_Start ANYTEXT Block_End ANYTEXT Block_Start ANYTEXT Block_End ...
WeikEngOff@...
udoweiksw
Offline Send Email
Jul 3, 2006
8:36 pm
2430
... No, currently it is not. But because of the maximal munching and proritizing strings of the lexer this is not a problem, because the lexer can simply...
svv1999
Offline Send Email
Jul 3, 2006
8:38 pm
2431
... GOLD seems to be an overkill for your problem. Use awk/gawk/mawk. From the gawk-manual: "A range pattern is made of two patterns separated by a comma, of...
svv1999
Offline Send Email
Jul 3, 2006
9:53 pm
2432
Hi, I have a hand written scannar and i want to use GOLD Parser. Is there any hook or api to connect it? I think i can do it if I write my own engine. Is my...
arnavkumar
Offline Send Email
Jul 4, 2006
6:43 am
2433
Hello Manfred, ... GOLD seems to be an overkill for your problem. Use awk/gawk/mawk. From the gawk-manual: "A range pattern is made of two patterns separated...
WeikEngOff@...
udoweiksw
Offline Send Email
Jul 4, 2006
8:04 pm
2434
... Your source format can roughly be described by this regular expression: {char}*( blockOpen char* blockClose char*}* If that is all you want to check, you...
svv1999
Offline Send Email
Jul 4, 2006
10:11 pm
2435
... The interface of the GOLD system are the .cgt-files accompanied by a processor, which can insert the information from the .cgt into a template, thereby...
svv1999
Offline Send Email
Jul 4, 2006
10:34 pm
2436
Hello, it seems not to be possible to define sets which result in an empty string. Is there any workaround? Thanks and greetings Udo [Non-text portions of this...
WeikEngOff@...
udoweiksw
Offline Send Email
Jul 5, 2006
9:10 pm
2437
... Empty Strings match multiple times at every character boundary of the source and on empty sources as well. Why should one want such recognition?...
svv1999
Offline Send Email
Jul 6, 2006
4:54 am
2439
Hello Manfred, thanks for you help, but beginnings are always difficult, so some additional questions... ... {char}*( blockOpen char* blockClose char*}* ...
WeikEngOff@...
udoweiksw
Offline Send Email
Jul 6, 2006
8:50 am
2440
Hello Manfred, thanks for you help, but beginnings are always difficult, so some additional questions... ... {char}*( blockOpen char* blockClose char*}* \---/...
udoweiksw
Offline Send Email
Jul 6, 2006
9:24 am
2441
... I wasn't nitpicking with the syntax --- sorry. ... Yeah, I meant it this way. ... + I see that you got the idea. Of course I did not think of the epsilon ...
svv1999
Offline Send Email
Jul 6, 2006
4:31 pm
2443
Hello again Manfred, o u r goal isn't far away, many thanks for your support. ... "Start Symbol" = <Text> BLOCK_Open = 'begin' BLOCK_Close = 'end' Structure =...
udoweiksw
Offline Send Email
Jul 6, 2006
5:34 pm
2444
... Sadly the goal got out of sight, when approaching. ... The epsilon-problem is, that the lexer is not allowed zo return an epsilon :-) "!epsilon" is a...
svv1999
Offline Send Email
Jul 6, 2006
8:06 pm
2445
Hello Manfred, ... "Start Symbol" = <Source> char = {ANSI Printable} ! This is the grammar accompanied by contruction comments: ! --- BEGIN Grammar ! main...
udoweiksw
Offline Send Email
Jul 6, 2006
9:54 pm
2446
... If you cannot define your task, you cannot reach its target :-) Good luck!...
svv1999
Offline Send Email
Jul 7, 2006
12:13 am
2447
Hello Manfred, ... really not so happy with your comment... ... I think I defined the task. Anyway, I assume it's not an easy to solve problem, but a typical...
udoweiksw
Offline Send Email
Jul 7, 2006
7:05 am
2448
... Sorry, you did define some aspects of your task, but there remain some degrees of freedom. I filled one of that with the requirement for a shortest...
svv1999
Offline Send Email
Jul 7, 2006
8:37 am
2449
I am currently working on a project which uses strong named assemblies. In order for me to use the GOLD parse (and the Calitha C# version of the Engine) I need...
Gary Udstrand
gudstra
Offline Send Email
Jul 13, 2006
6:49 pm
2450
I recently made small change to my grammer... here's a before and after. Before (just the parts affected)... ...
eatc7402
Offline Send Email
Jul 15, 2006
7:02 pm
2451
... Your problem seems to be, that now identifiers also end in spaces, i.e. 'tag id' is another identifier than 'tag id ' or 'tag id '. But your tests only...
svv1999
Offline Send Email
Jul 15, 2006
8:27 pm
2452
... Ah ha. I suspected that after more consideration. I was wishing to adjust the Alphanumeric_plus to include spaces 'within; but NOT at the END of an id tag....
eatc7402
Offline Send Email
Jul 16, 2006
2:06 am
2453
Does anyone have a grammar based on Noam Chomsky's syntax structure of the english language?...
tantrikwizard
Offline Send Email
Jul 16, 2006
3:19 am
Messages 2422 - 2453 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