Click here to Skip to main content
15,884,177 members
Everything / General Programming / Parser

Parser

Parser

Great Reads

by Xavier Junqué i de Fortuny
Reduces/evaluates a real/complex math expression
by Mircea Neacsu
Parser for command line options
by Xavier Junqué i de Fortuny
Polynomials Math Parser and Evaluator in VB.NET
by Cinchoo
Simple NACHA driver for .NET

Latest Articles

by Member 10522374
This library was created to parse the AutoCad Dxf format.
by Xavier Junqué i de Fortuny
Reduces/evaluates a real/complex math expression
by Mircea Neacsu
Parser for command line options
by Xavier Junqué i de Fortuny
Polynomials Math Parser and Evaluator in VB.NET

All Articles

Sort by Score

Parser 

15 Aug 2023 by Xavier Junqué i de Fortuny
Reduces/evaluates a real/complex math expression
2 Jan 2023 by Mircea Neacsu
Parser for command line options
4 May 2022 by Xavier Junqué i de Fortuny
Polynomials Math Parser and Evaluator in VB.NET
17 Feb 2017 by Cinchoo
Simple NACHA driver for .NET
27 Jun 2013 by Qwertie
LLLPG is a recursive-decent parser generator, with a feature set (and syntax) comparable to ANTLR version 2.
16 May 2021 by Steffen Ploetz
Creation of a basic X3DOM editor based on OpenGL with as little code as possible, that is running on ReactOS and Windows, to check out the capabilities of X3DOM.
14 Aug 2023 by Andre Oosthuizen
I will use regular expressions to match the key-value pairs in your input string, others might disagree with me. :) I have created a fiddle for you at - Reading string values in C#[^] using System; using System.Text.RegularExpressions; public...
8 Nov 2021 by Maciej Los
I'd suggest to read this: pandas.DataFrame.pivot — pandas 1.3.4 documentation[^]
21 Aug 2021 by Afzaal Ahmad Zeeshan
First question: Why? Avoid reinventing the wheel at any cost. I can understand, as a beginner, you might not enjoy the API of an existing library that does the parsing. But the safer bet is to use an existing library/package for this. Moving on...
5 Oct 2021 by RickZeeland
Maybe this will help you: Re-entrant flex/bison parser to make Abstract Syntax Tree[^]
18 May 2022 by Chris Copeland
I would typically be surprised to see hard-drives fail so quickly within such a short period of time, some hard-drives can support millions of writes before it becomes an issue, maybe less so with SSDs which can only sometimes support several...
23 Jul 2021 by Member 8715089
I've found several posts similar to this request but nothing that I've been able to utilize to parse the response I get. If this is even possible, would someone be able to provide me sample vb.net code that would help with parsing/deserializing...
5 Oct 2021 by Dave Kreskowiak
Nobody can write this for you, nor should they. First, you would learn nothing at all, and that's not helping you. Second, there is no specification for the "myC" language. Without that, you cannot possibly implement a parser, let alone do it...
5 Oct 2021 by OriginalGriff
While we are more than willing to help those that are stuck, that doesn't mean that we are here to do it all for you! We can't do all the work, you are either getting paid for this, or it's part of your grades and it wouldn't be at all fair for...
8 Nov 2021 by MaJaxx
Complete newby here. I'm trying to parse a quite long simulation output with Python into a frame and write it into an excel sheet. I only want to parse certain entries, not the whole thing. (See my code below) The output I am trying to parse: ...
18 May 2022 by Chopin2001
This is a feed parser prototype that I personally made in PHP. As you can see, it's a mess. No one is going to make it this way. :( It uses a mysql database and links in tables store unique webpage links to documents. If this link doesn't exist,...
21 Aug 2023 by headshot9x
I have a string content with some keywords and values. I want to get value follow the keyword. string _str = "{ Text = Banana, Value = 81 }"; //string _strText = "Banana"; //string _strValue = "81"; How...
14 Aug 2023 by PIEBALDconsult
Here's a simple lookup table class which might be instructive: public sealed partial class LookupTable : System.IDisposable { private static readonly System.Text.RegularExpressions.Regex reg ; static LookupTable ( ...
28 Jan 2024 by Member 10522374
This library was created to parse the AutoCad Dxf format.
1 Mar 2022 by W. García
A class module developed to evaluate mathematical expressions given as VBA strings
11 Jul 2021 by W. García
To cover the need to import information from a CSV file directly into RAM, in an efficient, secure and stable way, from VBA, specialized libraries are needed to ensure the ease of use and integrity of the data.
16 Aug 2023 by George Swan
Here is a simplistic approach static void Main(string[] args) { string str = "{ Text = Banana, Value = 81,Text = Apple, Value = 11,Text = Orange, Value = 21 }"; //Convert to KeyValue pairs eg. Banana:81 ...
21 Aug 2021 by Edgr78
I need to create an HTML Parser that will parse HTML code that I retrieved using either the Requests or Sockets libraries. I am not allowed to use the Beautiful Soup library, nor anything that creates the parser for me. How exactly do I parse...
5 Oct 2021 by Azor Ahai
Implement a parser for the programming language myC– in Project one using FLEX and BISON. The parser builds an abstract syntax tree (AST) for the input program and then pretty-prints the AST. Write. Five programs in myC–. Your programs must...
14 Nov 2021 by A v Nov2021
Input in a text file: a=2*8 b=3*9 c=4*8 d=5*9 e=a+b f=c+d g=0*6 h=1*7 i=e+g j=f+h output=i+j Desired Output : output=(((2*8)+(3*9))*(0*6))+(((4*8)+(5*9))*(1*7)) What I have tried: #Logic from internet. D = dict() output = None with...