show/hide this revision's text 3 less bold

My question:

How can I use these BNF grammers with TinyPG? I'm new to BNF so approximately what sort of conversion will I have to do to convert BNF to EBNF?

Please see this question for more info.

show/hide this revision's text 2 linked to new question

My understandings of TinyPG:

TinyPG allows you to write & develop:

  • Define Terminals using Regular Expressions.
  • Define Non-terminals and parser rules in Extended BNF meta-syntax.
  • Write Compiler code in C# or VB, within TinyPG.
  • It has an in-built IDE, Windows Only (created in C#.NET, open source).

    It allows you to try out & preview Regular Expressions using the inbuilt RegEx tool. RegEx syntax is supported in .NET which means that even your outputted parser code uses .NET's Regular Expressions.

    You write EBNF to describe the language of your choice (Here are some freely available BNF Grammers that describe modern programming languages (C, Java, JavaScript, C#, VB.NET, SQL-89)

    Using TinyPG, your RegEx along with your EBNF outputs a parse-tree (

    Please see this diagram).

    Now what do you do with the parse-tree? You write C#/VB code (within TinyPG, per BNF grammer rule) for your Compiler/Interpreter/Translator. (inside TinyPG, open the "simple expression2.tpg" file within the provided Samples to see a demo of a calculator 'compiler')

    TinyPG allows you to Compile and Test your tokenizer+parser+complier, within the TinyPG IDE, and it finally outputs the parser source code in C#.NET or VB.NET (your choice), with ready-to-use classes.

    An excellent All-in-one Compiler Compilerquestion for the masses. Enjoy!

    PS: Correct me if I'm wrong on any of thismore info.

    show/hide this revision's text 1

    My question:

    How can I use these BNF grammers with TinyPG? I'm new to BNF so approximately what sort of conversion will I have to do to convert BNF to EBNF?


    My understandings of TinyPG:

    TinyPG allows you to write & develop:

    It has an in-built IDE, Windows Only (created in C#.NET, open source).

    It allows you to try out & preview Regular Expressions using the inbuilt RegEx tool. RegEx syntax is supported in .NET which means that even your outputted parser code uses .NET's Regular Expressions.

    You write EBNF to describe the language of your choice (Here are some freely available BNF Grammers that describe modern programming languages (C, Java, JavaScript, C#, VB.NET, SQL-89)

    Using TinyPG, your RegEx along with your EBNF outputs a parse-tree (see this diagram).

    Now what do you do with the parse-tree? You write C#/VB code (within TinyPG, per BNF grammer rule) for your Compiler/Interpreter/Translator. (inside TinyPG, open the "simple expression2.tpg" file within the provided Samples to see a demo of a calculator 'compiler')

    TinyPG allows you to Compile and Test your tokenizer+parser+complier, within the TinyPG IDE, and it finally outputs the parser source code in C#.NET or VB.NET (your choice), with ready-to-use classes.

    An excellent All-in-one Compiler Compiler for the masses. Enjoy!

    PS: Correct me if I'm wrong on any of this.