Tagged Questions

Parsing refers to the action by software of breaking an artifact into its constituent elements and capturing the relationship between those elements.

learn more… | top users | synonyms (3)

115
votes
0answers
55k views

Looking for C# HTML parser [closed]

Possible Duplicate: What is the best way to parse html in C#? I would like to extract the structure of the HTML document - so the tags are more important than the content. Ideally, it ...
112
votes
8answers
51k views

What's the best C++ JSON parser?

I've seen the C++ JSON links on www.json.org but would like some feedback on which parser people prefer - for reliability, speed and ease of use. Thanks, Sam
86
votes
10answers
111k views

Python - Parse String to Float or Int

This should be simple - In python, how can I parse a numeric string like "545.2222" to its corresponding float value, 542.2222 or "31" to an integer, 31? EDIT: I just wanted to know how to parse a ...
86
votes
3answers
21k views

How to escape brackets in a format string in .Net

How can brackets be escaped in a C# format string so, something like : String val = "1,2,3" String.Format(" foo {{0}}", val); doesn't throw a parse exception but actually outputs the string " foo ...
80
votes
19answers
23k views

C#: Test if string is a guid without throwing exceptions?

i want to try to convert a string to a Guid, but i don't want to rely on catching exceptions ( for performance reasons - exceptions are expensive for usability reasons - the debugger pops up for ...
70
votes
43answers
7k views

Code Golf: Evaluating Mathematical Expressions

Challenge Here is the challenge (of my own invention, though I wouldn't be surprised if it has previously appeared elsewhere on the web). Write a function that takes a single argument that is a ...
69
votes
11answers
25k views

Robust, Mature HTML Parser for PHP

Are there any robust and mature HTML parsers available for PHP? A quick skimming of PEAR didn't turn anything up (lots of classes for generating HTML, not so much for consuming), and Google taught me ...
67
votes
22answers
69k views

What is the best way to parse html in C#? [closed]

I'm looking for a library/method to parse an html file with more html specific features than generic xml parsing libraries.
60
votes
5answers
2k views

If you're not supposed to use Regular Expressions to parse HTML, then how are HTML parsers written?

I see questions every day asking how to parse or extract something from some HTML string and the first answer/comment is always "Don't use RegEx to parse HTML, lest you feel the wrath!" (that last ...
58
votes
13answers
29k views

Parsing query strings in Java

J2EE has ServletRequest.getParameterValues(). On non-EE platforms, URL.getQuery() simply returns a string. What's the normal way to properly parse the query string in a URL when not on J2EE? ...
55
votes
7answers
61k views

Parse JSON in C#

I'm trying to parse some JSON data from the Google AJAX Search API. I have this URL and I'd like to break it down so that the results are displayed. I've currently written this code, but I'm pretty ...
55
votes
29answers
5k views

What is the opposite of 'parse'?

I have a function, parseQuery, that parses a SQL query into an abstract representation of that query. I'm about to write a function that takes an abstract representation of a query and returns a SQL ...
53
votes
5answers
24k views

regular expression pattern not matching anywhere in string

I am trying to match <input> type “hidden” fields using this pattern: /<input type="hidden" name="([^"]*?)" value="([^"]*?)" />/ This is sample form data: <input type="hidden" ...
53
votes
16answers
66k views

Removing HTML from a Java String

Is there a good way to remove HTML from a Java string? A simple regex like replaceAll("\\<.*?>","") will work, but things like &amp; wont be converted correctly and non-HTML between ...
51
votes
2answers
49k views

Parsing JSON using Json.net

I'm trying to parse some JSON using the JSon.Net library. The documentation seems a little sparse and I'm confused as to how to accomplish what I need. Here is the format for the JSON I need to ...
51
votes
4answers
4k views

Why C++ cannot be parsed with a LR(1) parser?

I were reading about parsers and parser generators when I hit upon this statement in wikipedia's LR parsing -page: "Many programming languages can be parsed using some variation of an LR parser. One ...
50
votes
26answers
8k views

Can you provide an example of parsing HTML with your favorite parser?

This question is a lazy way of collecting examples of parsing HTML with a variety of languages and parsing libraries. Individual comments will be linked to in answers to questions about how to parse ...
49
votes
8answers
25k views

Best XML parser for Java [closed]

I need to read smallish (few MB at the most, UTF-8 encoded) XML files, rummage around looking at various elements and attributes, perhaps modify a few and write the XML back out again to disk ...
49
votes
22answers
32k views

Parse usable Street Address, City, State, Zip from a string

Problem: I have an address field from an Access database which has been converted to Sql Server 2005. This field has everything all in one field. I need to parse out the individual sections of the ...
47
votes
16answers
19k views

How to parse a string into a nullable int in C# (.NET 3.5)

I'm wanting to parse a string into a nullable int in C#. ie. I want to get back either the int value of the string or null if it can't be parsed. I was kind of hoping that this would work int? val ...
46
votes
5answers
24k views

How to parse ISO formatted date in python?

I need to parse strings like that "2008-09-03T20:56:35.450686Z" into the python's datetime? I have found only strptime in the python 2.5 std lib, but it not so convinient. Which is the best way to ...
43
votes
4answers
5k views

What are the pros and cons of the leading Java HTML parsers?

Searching SO and Google, I've found that there are a few Java HTML parsers which are consistently recommended by various parties. Unfortunately it's hard to find any information on the strengths and ...
42
votes
12answers
2k views

How do search engines find relevant content?

How does Google find relevant content when it's parsing the web? Let's say, for instance, Google uses the PHP native DOM Library to parse content. What methods would they be for it to find the most ...
41
votes
9answers
17k views

SQL parser library for Java

Is there a good open-source Java library for parsing SQL statements? If possible, it should be customizable or flexible enough to also be able to parse (or at least ignore) vendor-specific syntax ...
40
votes
10answers
12k views

Which java YAML library should I use?

There are at least 4 YAML implementations listed at yaml.org. Which one of these (or another) would you recommend, and why? There are two ways you could answer this question, either by voting for ...
39
votes
9answers
21k views

Best way to compare 2 XML documents in Java

I'm trying to write an automated test of an application that basically translates a custom message format into an XML message and sends it out the other end. I've got a good set of input/output ...
38
votes
8answers
6k views

Your favorite natural language parser?

This is just a poll on what parser you like to use for parsing sentences of natural language syntactically. I am interested in complete software toolkits/solutions. A good answer would list at least ...
37
votes
9answers
13k views

PHP YAML Parsers

Does anyone know of a good YAML Parser for PHP? If so, what are the pros and cons of this library? Update: Starting a bounty to get fresh input. What's the status of YAML parsers in 2010? Any new ...
37
votes
10answers
37k views

How to parse a string to an int in C++?

What's the C++ way of parsing a string (given as char *) into an int? Robust and clear error handling is a plus (instead of returning zero).
35
votes
4answers
2k views

Why doesn't Haskell's Prelude.read return a Maybe?

Is there a good reason why the type of Prelude.read is read :: Read a => String -> a rather than returning a Maybe value? read :: Read a => String -> Maybe a Since the string might ...
35
votes
4answers
1k views

How to create a new language for use in Visual Studio

I want to write a new templating language, and I want Visual Studio to "support" it. What I need to know is: How do I parse my new language? Given some code in my new template language, how do I ...
35
votes
4answers
5k views

What is the difference between LR, SLR, and LALR parsers?

What is the actual difference between LR, SLR, and LALR parsers? I know that SLR and LALR are types of LR parsers, but what is the actual difference as far as their parsing tables are concerned? And ...
35
votes
9answers
26k views

XML parsing in Javascript

I have a variable string that contains well-formed and valid XML. I need to use Javascript to parse this feed. How can I accomplish this using (browser-compatible) Javascript?
33
votes
15answers
11k views

Parser for C#

Which parsers are available for parsing C# code? I'm looking for a C# parser that can be used in C# and give me access to line and file informations about each artefact of the analysed code.
32
votes
11answers
6k views

What parser generator do you recommend

I'm currently shopping for a FOSS parser generator for a project of mine. It has to support either C or C++. I've looked at bison/flex and at boost::spirit. I went from writing my own to spirit to ...
32
votes
9answers
40k views

parsing HTML on the iPhone

Can anyone recommend a C or Objective-C library for HTML parsing? It needs to handle messy HTML code that won't quite validate. Does such a library exist, or am I better off just trying to use ...
31
votes
8answers
39k views

Sending and Parsing JSON in Android

In the application I am developing, I would like to send messages in the form of JSON objects to a Django Server and parse the JSON response from the server and populate a custom listview. From the ...
30
votes
7answers
14k views

Lua vs. Other scripting languages

I wonder why a lot of programmers claim that Lua is faster then any other scripting language? What did they do that is more efficient then other languages? Is there something completely different in ...
29
votes
10answers
5k views

How would you go about parsing markdown?

You can find the syntax here. The thing is, the source that follows with the download is written in perl. Which I have no intentions of honoring. It is riddled with regex and it relies on MD5 hashes ...
28
votes
13answers
42k views

Adding a parameter to the URL with JavaScript

In a web application that makes use of AJAX calls, I need to submit a request but add a parameter to the end of the URL, for example: Original URL: http://server/myapp.php?id=10 Resulting URL: ...
28
votes
22answers
15k views

Equation (expression) parser with precedence?

I've developed an equation parser using a simple stack algorithm that will handle binary (+, -, |, &, *, /, etc) operators, unary (!) operators, and parenthesis. Using this method, however, ...
27
votes
8answers
44k views

Using C# regular expressions to remove HTML tags

How do I use C# regular expression to replace/remove all HTML tags, including the angle brackets? Can someone please help me with the code?
27
votes
12answers
3k views

How to read values from numbers written as words?

As we all know numbers can be written either in numerics, or called by their names. While there are a lot of examples to be found that convert 123 into one hundred twenty three, I could not find good ...
26
votes
7answers
9k views

Which Html Parser is best?

I code a lot of parsers. Up till now, I was using HtmlUnit headless browser for parsing and browser automation. Now, I want to separate both the tasks. As 80% of my work involves just parsing, I ...
26
votes
7answers
17k views

Best way to parse RSS/Atom feeds with PHP

I'm currently using Magpie RSS but it sometimes falls over when the RSS or Atom feed isn't well formed. Are there any other options for parsing RSS and Atom feeds with PHP?
26
votes
5answers
7k views

Best way to turn an integer into a month name in c#?

Is there a best way to turn an integer into its month name in .net? Obviously I can spin up a datetime to string it and parse the month name out of there. That just seems like a gigantic waste of ...
26
votes
7answers
20k views

Best JavaScript Date Parser & Formatter? [closed]

Since I've started to use jQuery, I have been doing a lot more JavaScript development. I have the need to parse different date formats and then to display them into another format. Do you know of ...
24
votes
1answer
291 views

Are there any Haskell techniques for mixed (part structure, part unmodified text) parsing & rewriting?

Example problem: I want to write a Haskell script that will highlight (e.g. with \fbox) the first occurrence of mathematical symbols in a document. Hopefully, this will help me ensure that I've ...
24
votes
5answers
18k views

Print stack trace information from C#

As part of some error handling in our product, we'd like to dump some stack trace information. However, we experience that many users will simply take a screenshot of the error message dialog instead ...
23
votes
5answers
28k views

json parse error with double quotes

A double quote even if escaped is throwing parse error. look at the code below //parse the json in javascript var testJson = '{"result": ["lunch", "\"Show\""] }'; var tags = JSON.parse(testJson); ...

1 2 3 4 5 187