parsing

Transform XML with XSLT and preserve CDATA (in Ruby)

I am trying to convert a document with content like the following into another document, leaving the CDATA exactly as it was in the first document, but I haven't figured out how to preserve the CDATA with XSLT. Initial XML: <node> <subNode> <![CDATA[ HI THERE ]]> </subNode> <subNode> <![CDATA[ SOME TEXT ]]> ...

Help in XML Parsing with iPhone

Hi all, I need to parse the xml listed below in the iphone. can anyone help me in this. please...! Thanks in advance... <Assignments> <Course> <CourseName>Foundation of English</CourseName> <CourseGradePercentage>89</CourseGradePercentage> <AssignmentList> <Assignment> <AssignmentName>Foundations of English I</AssignmentName> ...

wpf custom control xaml null error

Yet another strange WPF error: I have a custom control in a simple XAML page. The project builds and runs perfectly, with no errors. Here's the XAML: <Window x:Class="Grapher2.Window1" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:graph="clr-namespace:Gr...

How do I retrieve several hex values that are included in a a URL query string using jQuery?

I have an image tag that looks like this: <img src="http://www.example.com/render/pattern?obj=patterns/pattern_1&amp;color=7F8C6C&amp;obj=patterns/pattern_2&amp;color=C8D9B0&amp;obj=patterns/pattern_3&amp;color=FFFFD1" width="100" height="100" alt="" /> Is it possible for me to use jQuery/Javascript to search the src attribute to find...

Best/fastest way to write a parser in c#

What is the best way to build a parser in c# to parse my own language? Ideally I'd like to provide a grammar, and get Abstract Syntax Trees as an output. Many thanks, Nestor ...

Parsing rules - how to make them play nice together.

So I'm doing a Parser, where I favor flexibility over speed, and I want it to be easy to write grammars for, e.g. no tricky workaround rules (fake rules to solve conflicts etc, like you have to do in yacc/bison etc.) There's a hand-coded Lexer with a fixed set of tokens (e.g. PLUS, DECIMAL, STRING_LIT, NAME, and so on) right now there a...

Parse JSON array with jQuery .each()

Hi All! I have this jQuery function function getData(jsonLink){ $(".scrollable .items").html("<img class='loadGif' src='/sites/all/themes/zen/journeyon/images/ajax-loader.gif' alt='' />"); $.ajaxSetup({ url: jsonLink, global: false, type: "GET" }); $.ajax({ url: jsonLink, success: function(data) { var...

how to extract all text from HTML file using PHP?

Hello how to extract all text from HTML file I want to extract all text, in the alt attributes, < p > tags, etc.. however I don't want to extract the text between style and script tags Thanks right now I have the following code <?PHP $string = trim(clean(strtolower(strip_tags($html_content)))); $arr = explode(" ", $str...

Regex Tables how to match?

Hello I like to return the strings in this table <tr class="rowodd" onclick="window.location.href='/portal/offers/show/entityId/32114';"> <td>01.10.2009</td> <td>AN09551</td> <td>[2009132] Ich bin Un.&nbsp;<a href="/portal/clients/show/entityId/762350"><myimsrc="/img/bullet_go.pngs" alt="" title="Kundenakte aufrufen"></a></td...

How do I parse out the fields in a comma separated string using sscanf while supporting empty fields?

I have a comma separated string which might contain empty fields. For example: 1,2,,4 Using a basic sscanf(string,"%[^,],%[^,],%[^,],%[^,],%[^,]", &val1, &val2, &val3, &val4); I get all the values prior to the empty field, and unexpected results from the empty field onwards. When I remove the expression for the empty field from th...

Is there a free .eml parser available somewhere?

Hi, I am writing an add-on for my intranet to allow my users to just email "itsupport" and parse the from as the user who logged the job and the body as the issue. Does anyone know if their is a free parser available so I don't have to look at writing something myself? (no point re-inventing the wheel right :) ) Thanks for any advic...

Need help with a regular expression parser - C#

I am working on a program that reads a stream of binary data from a serial port and needs to parse and format the input. Data is read in constantly and needs to be displayed as a full string. Each string has a "start code" of 3 bytes and an "end code" of 3 bytes. I need to write a parser that will find the data based on start and end co...

Follow-up to question on iterating over a graph using XML minidom

This is a follow-up to the question (Link) What I intend on doing is using the XML to create a graph using NetworkX. Looking at the DOM structure below, all nodes within the same node should have an edge between them, and all nodes that have attended the same conference should have a node to that conference. To summarize, all authors...

How do I do python-style indent/dedent tokens with alex/haskell?

Hi, I'm writing a lexer for a small language in Alex with Haskell. The language is specified to have pythonesque significant indentation, with an INDENT token or a DEDENT token emitted whenever the indentation level changes. In a traditional imperative language like C, you'd keep a global in the lexer and update it with the indentation...

Get all images url from string

Possible Duplicate: How to extract img src, title and alt from html using php? Hi, I have found solution to get first image from string: preg_match('~<img[^>]*src\s?=\s?[\'"]([^\'"]*)~i',$string, $matches); But I can't manage to get all images from string. One more thing... If image contains alternative text (alt attribute) h...

Looking for a CSS Parser in java

Hi, I'm looking for a CSS Parser in java. In particular my requirement is, for a given node/element in an HTML document, to be able to ask/get the css styles for that element from the Parser. I know there is the W3C SAC interface and one or 2 implementations based on this - but turorials/examples appear non-existant. Any help/points i...

python: is there an XML parser implemented as a generator?

I'd like to parse a big XML file "on the fly". I'd like to use a python generator to perform this. I've tried "iterparse" of "xml.etree.cElementTree" (which is really nice) but still not a generator. Other suggestions? ...

How to parse a value from an XML tag in C language?

I'm getting this string as an input "<operator value=1/>". How in C can I parse out this string to get the "1" back? ...

Parse a char from an xml in C language?

Hi, I'm passing as input to my program: "<param value=s/>" I use this code: char character[1]; sscanf(data, "<param value=%c/>", &character); printf("%c", character); However the output seems to be "s/>" instead of only "s" char. what's wrong here? ...

What is the shortest way to write parser for my language?

PS.Where to read about parsing theory? ...