Click here to Skip to main content
Page 1 of 1
Page Size: 10 · 25 · 50


Tag filtered by:  Parser [x]
Article 11 May 2013   license: MIT
Simple non-validating streaming XML parser in C++.
Question 13 Apr 2013   license: CPOL
Hi :)I'm doing some research on compiler development, and am wanting to understand more about how the system works parsing using DFA tables. I see the theory of the operation of DFA table with parsers LALR, LL, LR, but I just can not understand.As I am studying, I do not want to use a...
Tip/Trick 27 Mar 2013   license: GPL3
This is light, fast and simple to understand mathematical parser designed in one class, which receives as input a mathematical expression (System.String) and returns the output value (System.Double)
Question 27 Mar 2013   license: CPOL
I wanna design Chomsky Normal Form (CNF) for English Pattern. I've designed it for two days, but I got stuck. I'm not good at Natural Language Processing but I have assignment about it. Firs one, I wanna design CNF for Present Tense, here the formula :Active : S + V/(ToBe)Passive : S +...
Tip/Trick 5 Mar 2013   license: CPOL
Quick and memory efficient ASN1 parser without dependencies.
Answer 21 Jan 2013   license: CPOL
For the formats you listed, you might try OLEDB[^].The "etc." and the "fixed format" on the file format list distroys the above mentioned approach, though.CheersAndi
Answer 20 Jan 2013   license: CPOL
No.There is no such thing as a "parser for any file format", and though it would be possible to create a class that could be expanded to parse new formats, there are so many different formats (just the number of different file formats Microsoft have used over the years is staggering) that it...
Question 20 Jan 2013   license: CPOL
Hi,One of my requirement is that a user can upload with various file like CSV, excel, Fixed file format, XML etc. Can i have any common parser which can parse any file in the given list and convert it into dataset or datatable for DB insertion.Also in future if any new file format...
Article 16 Jan 2013   license: CPOL
This article presents a fully functional proof of concept of the translation phases that transform your code from a flat string of characters to an abstract syntax tree.
Article 3 Jan 2013   license: GPL3
Using the power of regex to parse your logs.
Answer 10 Dec 2012   license: CPOL
I think that you are trying to use the wrong tool for the job...It make no sense to parse razor code to modify it. Use master pages, html helpers or maybe your own sequence that you would scan. Or better, why not uses razor itself to generate your code?You simple need to add in your...
Answer 10 Dec 2012   license: CPOL
I'm also working on a similar task - mine is to extract test-nodes from html/cshtml/aspx/etc. type files.So far, I am using the HtmlAgilityPack to parse the HTML - but how to distinguish Razor markup from plain-text during parsing - THAT is the question.I haven't tried it out yet, but one...
Question 9 Dec 2012   license: CPOL
I want to parse razor view file in c# . I have also used Html Agility Pack to parse razor view file but it failed to save correct file contents.Basically i want to change some html elements inner html by server side using c#this contents i want to change...
Answer 22 Nov 2012   license: CPOL
Please read here: RegEx Tutorial[^] @ vogella.comAnd please do some research here, we had such things in the past.
Question 22 Nov 2012   license: CPOL
Hello all,today I had some business with html parsing. The requested result was: using the java.net.URL class get all html content from http://www.google.com/ and set up a file which can be used to view the website offline. The greatest problem turned out to be "fetching" the html elements...
Answer 16 Nov 2012   license: CPOL
It's simple. Start here: SQL Parser[^]
Question 15 Nov 2012   license: CPOL
Hi experts!!I am creating a sql query builder program in C# using asp.net 3.5.I am able to generate the query. But i want to check/parse the generated sql statement whether the syntax is right or wrong.How to achieve this. please helpthanks.
Answer 1 Nov 2012   license: CPOL
See here[^] for the definition of class files.
Question 1 Nov 2012   license: CPOL
I have to create a java parser which should give the follwing outputs;Class name –Method Name – Parameter count of that method –Return count of that method –Number of override methods – Number of new methods – Number of descends – Polymorphism factor – I have to use...
Answer 1 Nov 2012   license: CPOL
You may have a look at ANTLR[^] , it is a powerful tool for such tasks.
Answer 16 Oct 2012   license: CPOL
It is far from clear what you are trying to do and why, but you seem once again to be trying to learn some new technology by asking questions here. If you need a quick XML parser then take a look at XmlLite[^] from Microsoft. Using XML is not excessively difficult but it does require you to...
Question 16 Oct 2012   license: CPOL
i got the Tiny XML code from the link http://sourceforge.net/projects/tinyxml/[^]And another XML Parsing document link from the link Parsing an XML file in a C/C++ program[^]What i have to do is,i will get the data as shown below,i will get it as an string and pass it to mine xml...
Question 23 Aug 2012   license: CPOL
Hello ~I've been studying a bit these days this really great library which is mcHID.dll (using this template in visual basic http://helmpcb.com/software/usb-hid-template-for-visual-basic-2005)Actually i'm testing with different usb devices, and mainly joystick, and other exotic...
Article 11 Aug 2012   license: MIT
Use NRefactory to write a standalone application that refactors your C# code.
Article 10 Jul 2012   license: CPOL
The supplementary source code for this article can be requested at edifabric.com
Answer 19 Jun 2012   license: CPOL
you can start like thistypedef struct{ char* text; void* data;}DATA_INFO;DATA_INFO& parseFile("FileName.txt", char* label ){ char* currentline; Openfile; getline( currentline ); remove / from currentline; comparestring( label, currentline ); { ...
Tip/Trick 19 Jun 2012   license: CPOL
A simple plist parser within 100 lines of C# code.
Answer 18 Jun 2012   license: CPOL
Looks fairly simple to start with, just check each line for a starting / then strip the following code that is delimited by { and }. Maybe you should clarify exactly what part of this you are having difficulty with.
Question 18 Jun 2012   license: CPOL
Hi.I have to develop a simple parser, to read "block" of textfor example:/TEST {. text .}/TEST_DATA {. infs .}and, I need to read informations of inside of label....and... the file with have this informations... have a lot of labels, with the same perfilfor...
Answer 11 Jun 2012   license: CPOL
Better try like below.DateTime ExDate = DateTime.ParseExact(txtExpiryDate.Text, "dd/MM/yyyy", null); (or) DateTime ExDate = Convert.ToDateTime("txtExDate".Text);
Answer 11 Jun 2012   license: CPOL
Have a look at this: DateTime.TryParse[^] method and use it.DateTime.TryParse Method (String, IFormatProvider, DateTimeStyles, DateTime%)The most important is:Specific valid formats for date and time elements, as well as the names and symbols used in dates and times, are defined by the...
Question 11 Jun 2012   license: CPOL
Hello all dears ! i have a string that contain DateTime value like : Tue Jun 12 00:17:44 2012now if i want to parse by DateTime.Parse(dateTime); occure an error : String was not recognized as a valid DateTime.how i solve ?
Answer 23 May 2012   license: CPOL
Look at this link:http://nlp.stanford.edu/software/lex-parser.shtml[^]They provide a download link for their parser including the source code -- written in java. This is a seriously huge project. Take a look at what Stanford provides and you might get some idea of the scope of...
Question 22 May 2012   license: CPOL
Hi,A friend of mine has got a project to develop a dependency parser to parse Indian language Hindi using Python.Till now we are unable to get any ideas how to develop that and on google we only get abstract research papers. Please provide any link or suitable sample code for Parsing in...
Answer 16 May 2012   license: CPOL
If I understood correctly, you can cast an object instance to your interface like:testinterface someVar = originalVar as testinterface;after that someVar should contain the variable as your interface if the original instance implemented the interface. If it didn't, someVar is null.
Question 16 May 2012   license: CPOL
Hey i was here to day playing around with interfaces to try get better to them (cos i never use anything but abstract classes cos i never feel interfaces is much of use) but i have made the following code:class Program { static void Main(string[] args) { ...
Answer 10 May 2012   license: CPOL
Almost each tag in html must contain ending tag, for example:My first HTML documentHello!As you see, for tag equivalent tag is More at:...
Question 10 May 2012   license: CPOL
If someone can help me out in identifying why i am getting the below error XML PARSE ERROR: Missing end-tag Error occurs at or below this element stack: ...
Answer 30 Apr 2012   license: CPOL
Check that the codebehind class ispublic partial class TestCert:Page{}Also try changing CodeBehind="TestCert.aspx.cs" to CodeFile="TestCert.aspx.cs". This change is required when you change project type from website to webapplication or vice versa.Since you are saying that the...
Question 30 Apr 2012   license: CPOL
Hi!Now, I know what you're thinking ("Not another parser error!"). But my situation is unique. (No, really! ;-) ) I could use your help. Let me tell you what the error is:Server Error in '/'...
Answer 18 Apr 2012   license: CPOL
This site is for programming related questions.I would advise you seek this kind of information elsewhere as it is off topic here.You can also go to your nearest college/university/teaching institution and ask the tutors there.
Question 18 Apr 2012   license: CPOL
Hi All, I have done my B.Tech @ 2010 in ECE[Electronics And Communication]. After that onward I am working in VC++ domain in a company. Now I want to appear for GATE Exam for "Computer Science" after finishing 2 years in this company. I don't want to do MBA and all non-technical...
Article 6 Apr 2012   license: CPOL
Use the GOLD Parser to define a language for mapping between two business entities, create a parser using the bsn-goldparser engine, and generate an assembly using CodeDom.

Page 1 of 1


Advertise | Privacy | Mobile
Web03 | 2.6.130513.1 | Last Updated 14 May 2013
Copyright © CodeProject, 1999-2013
All Rights Reserved. Terms of Use
Layout: fixed | fluid