Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Are there any good parsing libraries for .Net?

Tags:

.net

parsing

I'm looking for something simple to use where the grammar is easy to define.

like image 391
Renaud Bompuis Avatar asked Dec 14 '08 01:12

Renaud Bompuis


People also ask

What does parsing do in C#?

Parse(String) Method is used to convert the string representation of a number to its 32-bit signed integer equivalent.

How do you parse HTML?

If you just want to parse HTML and your HTML is intended for the body of your document, you could do the following : (1) var div=document. createElement("DIV"); (2) div. innerHTML = markup; (3) result = div. childNodes; --- This gives you a collection of childnodes and should work not just in IE8 but even in IE6-7.

What is parsing in network?

A parser is the Network Monitor component that inspects data in a delayed capture, and passes specific protocol information to the application that calls the parser. A parser is passive because it works only when Network Monitor or an expert call it.

What is generator parser?

A parser generator takes a grammar as input and automatically generates source code that can parse streams of characters using the grammar. The generated code is a parser, which takes a sequence of characters and tries to match the sequence against the grammar.


1 Answers

Although I've never used it before, ANTLR has C# runtime.

like image 179
Eugene Yokota Avatar answered Sep 21 '22 01:09

Eugene Yokota