active questions tagged parsing - Stack Overflowmost recent 30 from stackoverflow.com2009-12-07T21:20:52Zhttp://stackoverflow.com/feeds/tag/parsinghttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1861997/parse-string-to-datetime1Parse string to DateTimeDan Pettersson2009-12-07T18:36:30Z2009-12-07T19:49:05Z
<p>Hi!
I have a source where dates comes in this string form:</p>
<pre><code> Sat Sep 22 13:15:03 2018
</code></pre>
<p>Is there any easy way I can parse that as a datetime in C#? I've tried with DateTime.(Try)Parse, but it doesn't seem to recognize this specific format...</p>
http://stackoverflow.com/questions/1860789/check-sql-script-valid0Check sql script validChris R2009-12-07T15:43:45Z2009-12-07T17:19:21Z
<p>As part of a release we run a load of PL/SQL scripts against a database. Recently someone left the <code>;</code> off the end of a line in one script that was called another script so this meant that script did not get run. Because this did not cause an error, it just didn't get run, it took quite a while to track down what had happened.</p>
<p>I want to check the scripts before they are run for lines in them that are missing either a <code>;</code> at the end or a <code>/</code> on the line after. This is made more complicated as 'lines' in the script could actually span more than one line if it is statement or block of code. </p>
<p>To me this seems like to do this I'm going to have to parse the scripts then check they meet the above. </p>
<p>I've found <a href="http://www.antlr.org/" rel="nofollow">ANTLR</a> and wonder if this might be a way to do it since there seem to be <a href="http://www.antlr.org/grammar/1209225566284/PLSQL3.g" rel="nofollow">existing PL/SQL grammars</a> but looks like that's going to be a step learning curve for what's just a simple check.</p>
<p>Does anyone know an easy way or any other tools, eclipse plugins etc that I can use to check for lines in the scripts that are missing either a <code>;</code> at the end or a <code>/</code> on the line after?</p>
http://stackoverflow.com/questions/1858117/flexible-numeric-string-parsing-in-python4Flexible numeric string parsing in PythonKevin Ivarsen2009-12-07T06:06:50Z2009-12-07T10:36:49Z
<p>Are there any Python libraries that help parse and validate numeric strings beyond what is supported by the built-in float() function? For example, in addition to simple numbers (1234.56) and scientific notation (3.2e15), I would like to be able to parse formats like:</p>
<ul>
<li>Numbers with commas: 2,147,483,647</li>
<li>Named large numbers: 5.5 billion</li>
<li>Fractions: 1/4</li>
</ul>
<p>I did a bit of searching and could not find anything, though I would be surprised if such a library did not already exist.</p>
http://stackoverflow.com/questions/1858297/what-is-the-best-lalr-parser-generator-for-c-that-can-generate-meaningful-error0What is the best LALR parser generator for C++ that can generate meaningful error messagesPhilip Schlump2009-12-07T06:54:03Z2009-12-07T07:04:31Z
<p>I am looking for the best solution for a LALR parser generator for C++ that will allow me to generate really good error messages. I really hate the syntax errors that MySQL generates and I want to take the parser in it and replace it with a "lint" checker that will tell me more than just </p>
<pre><code>ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'a from users' at line 1
</code></pre>
<p>I have used YACC/LEX and BISON/FLEX.
It has to work on Mac or Linux.</p>
http://stackoverflow.com/questions/1835916/grammatica-parsing-error-wrong-expected-encoding0Grammatica Parsing Error, Wrong Expected Encoding?LorenVS2009-12-02T21:23:57Z2009-12-07T03:21:18Z
<p>I'm trying to use grammatica to generate a C# parser for a language I'm attempting to build (hobby project). However, everytime I run the grammatica parser, I get an error at line 1 position 1, "unexpected character 'x'" where x is some strange ASCII character (looks kind of like an 'n')</p>
<p>The grammatica output shows 3 such strange characters before my actual grammer file content starts, which seems to lead me to believe grammatica is expecting the grammar file in a different encoding than my grammar file is in, but I can't find any documentation as to what it actually expects. Anyone else know whats going on here?</p>
http://stackoverflow.com/questions/1854806/is-there-an-open-source-python-library-for-sanitizing-html-and-removing-all-javas3Is there an Open Source Python library for sanitizing HTML and removing all Javascript?Omnifarious2009-12-06T08:51:41Z2009-12-07T03:03:28Z
<p>I want to write a web application that allows users to enter any HTML that can occur inside a <code><div></code> element. This HTML will then end up being displayed to other users, so I want to make sure that the site doesn't open people up to XSS attacks.</p>
<p>Is there a nice library in Python that will clean out all the event handler attributes, <code><script></code> elements and other Javascript cruft from HTML or a DOM tree?</p>
<p>I am intending to use Beautiful Soup to regularize the HTML to make sure it doesn't contain unclosed tags and such. But, as far as I can tell, it has no pre-packaged way to strip all Javascript.</p>
<p>If there is a nice library in some other language, that might also work, but I would really prefer Python.</p>
<p>I've done a bunch of Google searching and hunted around on pypi, but haven't been able to find anything obvious.</p>
http://stackoverflow.com/questions/1842901/batch-file-script-to-delete-several-non-sequential-lines-from-text-files0Batch File/Script to delete Several non sequential lines from text file(s)Damir2009-12-03T21:02:11Z2009-12-06T14:27:21Z
<p>I have read the suggestion listed here.</p>
<p><a href="http://stackoverflow.com/questions/418916/delete-certain-lines-in-a-txt-file-via-a-batch-file">http://stackoverflow.com/questions/418916/delete-certain-lines-in-a-txt-file-via-a-batch-file</a></p>
<p>The batch file solution seems to work untill i get to about 5 ignore conditiobal strings and then the output starts to ignore very large sections of the text files(s) even things it shouldn't.</p>
<p>Basically I have a bunch of Windows systeminfo (run > cmd > systeminfo) parses. If you run the system info util you will see several lines there (200+). I want a way to run through them (directory at a time hopefully) and only keep or parse out about the 10 lines that matter (cpu speed, ram amt, etc etc).</p>
<p>Like I said I tried the solution above and it looked great until I got past a few ignore strings and all of a sudden it just started ignoring almost everything.</p>
<p>Does anyone have a suggestion? Or even an Idea as to what I was doing wrong?</p>
<p>This is what I got up to before I realized that lines that should not have been deleted were not being printed.</p>
<pre><code>type *.txt | findstr /v "OS Manufacturer:" | findstr /v "OS Configuration:" | findstr /v "OS Build Type:" | findstr /v "Product ID:" | findstr /v "Original Install Date:" | findstr /v "System Up Time:" | findstr /v "System type:" | findstr /v "BIOS Version:" | findstr /v "Windows Directory:" | findstr /v "System Directory:" | findstr /v "Boot Device:" | findstr /v "System Locale:" | findstr /v "Input Locale:" | findstr /v "Time Zone:" | findstr /v "Available Physical Memory:" | findstr /v "Virtual Memory: Max Size:" | findstr /v "Virtual Memory: Available:" | findstr /v "Virtual Memory: In Use:" | findstr /v "Page File Location(s):" | findstr /v "Domain:" | findstr /v "Logon Server:" | findstr /v "Hotfix(s):" | findstr /v "NetWork Card(s):" | findstr /v "Registered Owner:" | findstr /v "Registered Organization:" > c:\zzz\final.txt
</code></pre>
<p>pause</p>
http://stackoverflow.com/questions/1851366/compairing-some-pattern-with-regular-expression-c0compairing some pattern with regular expression C#rahul2009-12-05T06:36:25Z2009-12-05T23:57:54Z
<p>i am parsing binary file. File size can be large. i want to search a some pattern in that file. the string is </p>
<blockquote>
<p>anynumber <strong>0 obj<<</strong> any<br>
alpha,symbol,digit...anything<br>
<strong>>>endobj</strong> </p>
</blockquote>
<p>Bold text indicates compulsory string.
So, My QUESTION is - should i do it by regular expression or search it by coding. After that i want to store it in a dictionary.
If regular expression then what it be?? what is the fastest way??
I am new to C# and using VS-2005.</p>
http://stackoverflow.com/questions/1851940/lua-equivalent-to-shlex1Lua equivalent to shlex?RCIX2009-12-05T11:24:50Z2009-12-05T22:08:17Z
<p>Is there a Lua equivalent for python's <a href="http://docs.python.org/lib/module-shlex.html" rel="nofollow">shlex</a> library?</p>
http://stackoverflow.com/questions/1852666/xmllite-parser-hangs1XMLLite parser hangsmots_g2009-12-05T16:38:13Z2009-12-05T16:38:13Z
<p>I'm parsing an XML using XMLLite. I notice that when its a relatively large file, the reader's pointers fails to locate the next element(tag) of the file. When i reduced the contents of the file, it could successfully parse.</p>
<p>The reader continually shows node type "XmlNodeType_None" and fails to complete parsing, getting stuck in an infinite while loop.</p>
<p>Is it to do something with its file size? Or anything in initializing the IStream? My file has around 9000 bytes of data only. </p>
<p>Thanks</p>
http://stackoverflow.com/questions/1850824/parsing-a-rfc-822-date-with-nsdateformatter2Parsing a RFC 822 date with NSDateFormatterAnurag2009-12-05T01:52:55Z2009-12-05T11:56:15Z
<p>I'm using a NSDateFormatter to parse a RFC 822 date on the iPhone. However, there is no way to specify optional elements in the date format. There are a couple of optional parts in the RFC 822 specification which is breaking the date parser. If nothing works out, I'd probably have to write a custom parser to obey the specs.</p>
<p>For example, the day name is optional in the spec. So both these dates are valid:</p>
<p><code>Tue, 01 Dec 2009 08:48:25 +0000</code> is parsed with the format <code>EEE, dd MMM yyyy HH:mm:ss z</code>
<code>01 Dec 2009 08:48:25 +0000</code> is parsed with the format <code>dd MMM yyyy HH:mm:ss z</code></p>
<p>This is what I am currently using:</p>
<pre><code>+ (NSDateFormatter *)rfc822Formatter {
static NSDateFormatter *formatter = nil;
if (formatter == nil) {
formatter = [[NSDateFormatter alloc] init];
NSLocale *enUS = [[NSLocale alloc] initWithLocaleIdentifier:@"en_US"];
[formatter setLocale:enUS];
[enUS release];
[formatter setDateFormat:@"EEE, dd MMM yyyy HH:mm:ss z"];
}
return formatter;
}
+ (NSDate *)dateFromRFC822:(NSString *)date {
NSDateFormatter *formatter = [NSDate rfc822Formatter];
return [formatter dateFromString:date];
}
</code></pre>
<p>And parsing the date as follows:</p>
<pre><code>self.entry.published = [NSDate dateFromRFC822:self.currentString];
</code></pre>
<p>One way is to try both formats, and take whatever returns non null value. However, there are two optional parts in the spec (day name and seconds) and there would be 4 possible combinations. Still not too bad, but it's a bit hacky.</p>
http://stackoverflow.com/questions/1848464/advanced-pdf-parsing-using-python-extracting-text-without-tables-etc-whats0Advanced PDF Parsing Using Python (extracting text without tables, etc.): What's the Best Library?cialowicz2009-12-04T17:28:29Z2009-12-05T03:13:39Z
<p>I'm looking for a PDF library which will allow me to extract the text from a PDF document. I've looked at PyPDF, and this can extract the text from a PDF document very nicely. The problem with this is that if there are tables in the document, the text in the tables is extracted in-line with the rest of the document text. This can be problematic because it produces sections of text that aren't useful and look garbled (for instance, lots of numbers mashed together).</p>
<p>I'm looking for something that's a bit more advanced. I'd like to extract the text from a PDF document, <em>excluding</em> any tables and special formatting. Is there a library out there that does this? Or am I forced to do some post-processing on the output text to get rid of these sections?</p>
<p>Any ideas & thoughts would be greatly appreciated. Thank you.</p>
http://stackoverflow.com/questions/1850468/parsing-string-interpolation-in-antlr0Parsing string interpolation in ANTLRtoluju2009-12-05T00:04:18Z2009-12-05T00:04:18Z
<p>I'm working on a simple string manipulation DSL for internal purposes, and I would like the language to support string interpolation as it is used in Ruby.</p>
<p>For example:</p>
<pre><code>name = "Bob"
msg = "Hello ${name}!"
print(msg) # prints "Hello Bob!"
</code></pre>
<p>I'm attempting to implement my parser in ANTLRv3, but I'm pretty inexperienced with using ANTLR so I'm unsure how to implement this feature. So far, I've specified my string literals in the lexer, but in this case I'll obviously need to handle the interpolation content in the parser.</p>
<p>My current string literal grammar looks like this:</p>
<pre><code>STRINGLITERAL : '"' ( StringEscapeSeq | ~( '\\' | '"' | '\r' | '\n' ) )* '"' ;
fragment StringEscapeSeq : '\\' ( 't' | 'n' | 'r' | '"' | '\\' | '$' | ('0'..'9')) ;
</code></pre>
<p>Moving the string literal handling into the parser seems to make everything else stop working as it should. Cursory web searches didn't yield any information. Any suggestions as to how to get started on this?</p>
http://stackoverflow.com/questions/1395528/scraping-html-tables-into-r-data-frames-using-the-xml-package3Scraping html tables into R data frames using the XML packageEduardo Leoni2009-09-08T18:27:33Z2009-12-04T20:14:56Z
<p>How do I scrape html tables using the XML package?</p>
<p>Take, for example, this wikipedia page on the <a href="http://en.wikipedia.org/wiki/Brazil%5Fnational%5Ffootball%5Fteam" rel="nofollow">Brazilian soccer team</a>. I would like to read it in R and get the "list of all matches Brazil have played against FIFA recognised teams" table as a data.frame. How can I do this?</p>
http://stackoverflow.com/questions/1846347/parsing-search-query0Parsing search querySili2009-12-04T11:20:06Z2009-12-04T17:33:25Z
<p>Hello,
I need to parse a search query with a "Google-like" syntax (but simpler, since I don't need parenthesis, operator nesting and such). An example string might be:</p>
<p>TAG1: a,b,c TAG2: 123 TAG3: a,45,44,b</p>
<p>So, simply put, I need to recognize tokens which look like a TAG (i.e "color", "name", "age") followed by : and by a single "word" or a list of comma separated words
I tried with some regex but if a user makes mistakes with the syntax (like typing an extra comma, or forgetting a value after a tag - color: shape:) the parsing fails. I don't really know if this is my fault (I'm far from being an expert with regex) or if going with a parser like ANTLR would be a better choice. Anyway, I'm opened to any kind of suggestion (I'm coding in java - I know the language has nothing to do with it, but maybe there are some tools that may help) </p>
<p>Thanks for your suggestions...</p>
http://stackoverflow.com/questions/1842821/ssis-strip-characters-from-flat-file0SSIS: Strip Characters from Flat FileEven Mien2009-12-03T20:47:52Z2009-12-04T15:14:03Z
<p>What's the best way to strip out characters from flat files in SSIS? In my case, I need to remove all quotes from the file before processing.</p>
http://stackoverflow.com/questions/1846735/australian-mobile-numbers-strings-formatting1australian mobile numbers strings formattingondrobaco2009-12-04T12:42:56Z2009-12-04T14:13:22Z
<p>i need to format mobile numbers.
e.g.</p>
<pre><code>+61421 123 123
0421 123 123
0061421123123
0421 123123
</code></pre>
<p>1) into this type of string to save in the dbf</p>
<pre><code>0421123123
</code></pre>
<p>2) then display it in this format</p>
<pre><code>0421 123 123
</code></pre>
<p>any suggestion on the most effective way to format the numbers?</p>
http://stackoverflow.com/questions/1837944/how-to-copy-only-body-of-pdf-file-using-itextsharp-or-pdfsharp-in-c0how to copy only body of pdf file using itextsharp or pdfsharp in C#rahul2009-12-03T05:59:28Z2009-12-04T12:48:13Z
<p><strong><em>I am still waiting for the reply from you all. I really need your support.......plz</em></strong></p>
<p>I am developing a project called pdf recovery. In that i want to just copy the body of file into another pdf file using <strong>itextsharp C# lib</strong>. </p>
<blockquote>
<p>i want to parse entire file as soon as i get body i.e. " 1 0 obj<<....>>endobj " according to pdf reference. then copy full body to another pdf file.</p>
</blockquote>
<p>i dont to want to read header,xref table..etc.</p>
<p>I am using itextsharp lib for creating a file. if pdfsharp provides this i will move to that one. <strong>Also give some tips about both lib</strong>.
Thnx. :)</p>
http://stackoverflow.com/questions/1230112/how-to-parse-an-as-as3-file0How to parse an .as (AS3) fileumop2009-08-04T21:52:19Z2009-12-04T11:10:59Z
<p>I am looking to get as close as I can to parsing out an AS3 file into objects or XML. For instance, imagine the following class:</p>
<pre><code>package {
class SomeClass extends AnotherClass {
private var someVariable:Number
public function someMethod(someParameter:Number = 4):void {
var someLocalVariable:Number = someParameter * (2 + someVariable);
}
}
}
</code></pre>
<p>When parsed, it might be something like:</p>
<pre><code><package name="">
<class id="783" name="SomeClass" extendsId="782">
<variable id="784" visibility="private" type="Number"/>
<function id="785" name="someMethod" returnType="void">
<parameter id="786" name="someParameter" type="Number">
<expression>
<number value="4"/>
</expression>
</parameter>
<variable id="787" name="someLocalVariable" type="Number"/>
<code>
<assign toId="787">
<expression>
<variable id="786"/>
<operator type="*"/>
<expression>
<number value="2"/>
<operator type="+"/>
<variable id="786"/>
</expression>
</expression>
</assign>
</code>
</function>
</class>
</package>
</code></pre>
<p>.. even if I don't get a nice, neat xml structure like this, even if it could just parse AS3 to some kind of capacity, it would be way beyond where I am now.</p>
<p>Any thoughts?</p>
<p>Thanks,
Eric</p>
http://stackoverflow.com/questions/1845139/best-way-to-parse-an-icalendar-string-in-php0Best Way to parse an iCalendar string in phpMatt Wheeler2009-12-04T05:59:46Z2009-12-04T05:59:46Z
<p>I am trying to write a class that can parse an iCalendar file and am hitting some brick walls. Each line can be in the format:</p>
<pre><code>PARAMETER[;PARAM_PROPERTY..]:VALUE[,VALUE2..]
</code></pre>
<p>It's pretty easy to parse with either a bunch of splits or regex's until you find out that values can have backticked commas, also they can be double quote marked which makes life hard. for example:</p>
<pre><code>PARAMETER:"my , cool, value",value\,2,value3
</code></pre>
<p>In this example you are meant to pull out the three values:</p>
<ul>
<li>my , cool value</li>
<li>value,2</li>
<li>value3</li>
</ul>
<p>Which makes it a little more difficult.</p>
<p>Suggestions?</p>
http://stackoverflow.com/questions/1665427/generate-objective-c-parser-from-bnf-grammar1Generate Objective-C parser from BNF grammarDave Jarvis2009-11-03T05:31:49Z2009-12-04T01:39:23Z
<p>I have looked at the following software tools:</p>
<ul>
<li>Ragel <a href="http://www.complang.org/ragel/" rel="nofollow">http://www.complang.org/ragel/</a></li>
<li>ANTLR <a href="http://www.antlr.org/" rel="nofollow">http://www.antlr.org/</a></li>
</ul>
<p>ANTLR seems the most straight-forward, however its documentation is lacking.
Ragel looks possible, too, but I do not see an easy way to convert <a href="http://en.wikipedia.org/wiki/Backus%E2%80%93Naur%5FForm" rel="nofollow">BNF</a> into its syntax.</p>
<p>What other tools are available that can take BNF input and generate a corresponding, Unicode-friendly, cross-platform, standalone, Objective-C parser?</p>
<p>Many thanks for all suggestions.</p>
http://stackoverflow.com/questions/911663/parsing-huge-xml-files-in-php1Parsing Huge XML Files in PHPIan2009-05-26T16:50:50Z2009-12-04T01:04:08Z
<p>I'm trying to parse the dmoz content/structures xml files into mysql, but all existing scripts to do this are very old and don't work well. How can I go about opening a large (+1GB) xml file in php for parsing?</p>
http://stackoverflow.com/questions/1843320/any-good-javascript-bbcode-parser0Any good javascript BBCode parser?Drevak2009-12-03T22:10:53Z2009-12-03T22:26:34Z
<p>Currently i'm parsing bbcode server side but i'd like to show a preview just like this site does.</p>
<p>If I process the bbcode serverside using ajax it's a bit laggy, so i thought doing it client side, to just show the preview.</p>
<p>Do you guys know any bbcode parser written in javascript?</p>
http://stackoverflow.com/questions/1452443/searching-all-elements-before-an-h2-element-in-hpricot-nokogiri1Searching all elements before an h2 element in hpricot/nokogiriDave2009-09-21T00:46:48Z2009-12-03T22:00:03Z
<p>I am attempting to parse a Wiktionary entry to retrieve all english definitions. I am able to retrive all definitions, the problem is that some definitions are in other languages. What I would like to do is somehow retrieve only the HTML block with English definitions. I have found that, in the case that there are other language entries, the header after the english definitions can be retrieved with:</p>
<pre><code>header = (doc/"h2")[3]
</code></pre>
<p>So I would like to only search all the elements before this header element. I thought that may be possible with <code>header.preceding_siblings()</code>, but that does not seem to be working. Any suggestions?</p>
http://stackoverflow.com/questions/1564448/format-parseexception-with-javacc0Format ParseException with JavaCCtsutomi2009-10-14T05:43:13Z2009-12-03T18:00:03Z
<p>I was wondering how could it be possible to format in a human-readable format a ParseException thrown by JavaCC: in fact it includes fields such as<code>beginLine</code>, <code>beginColumn</code>, <code>endColumn</code>, <code>endLine</code> in the token reference of the exception, but not the reference to the source parsed.</p>
<p>Thanks! :)</p>
http://stackoverflow.com/questions/1838582/external-entity-in-xml-causing-null-pointer-exception-during-documentbuilder-pars0External entity in XML causing null pointer exception during DocumentBuilder.parse("file");Sri Kumar2009-12-03T08:51:14Z2009-12-03T14:10:15Z
<p>Hello All,</p>
<p>I was trying to parse a XML Document using DOM Parser.</p>
<p>I got null pointer exception while executing doc = builder.parse(xmlDataFile);</p>
<p>There were few entities in the XML data file. On removing a particular entity,
i was able to parse the file successfully</p>
<p>The entity was some thing like this </p>
<pre><code><!ENTITY SAMPLE.TIF SYSTEM "SAMPLE.TIF" NDATA TIF>
</code></pre>
<p>What could be the reason?</p>
<p><strong>EDIT:</strong></p>
<p>Here is the code:</p>
<pre><code> DocumentBuilderFactory aFactory = DocumentBuilderFactory.newInstance();
aFactory.setValidating(false);
aFactory.setFeature("http://xml.org/sax/features/namespaces", false);
aFactory.setFeature("http://apache.org/xml/features/validation/schema", false);
aFactory.setIgnoringComments(true);
builder = aFactory.newDocumentBuilder();
doc = builder.parse(xmlDataFile);
</code></pre>
<p>This is the trace:</p>
<pre><code> at com.sun.org.apache.xerces.internal.dom.DeferredDocumentImpl.setChunkIndex(DeferredDocumentImpl.java:1944)
at com.sun.org.apache.xerces.internal.dom.DeferredDocumentImpl.appendChild(DeferredDocumentImpl.java:644)
at com.sun.org.apache.xerces.internal.parsers.AbstractDOMParser.characters(AbstractDOMParser.java:1191)
at com.sun.org.apache.xerces.internal.impl.dtd.XMLDTDValidator.characters(XMLDTDValidator.java:862)
at com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl.scanDocument(XMLDocumentFragmentScannerImpl.java:463)
at com.sun.org.apache.xerces.internal.parsers.XML11Configuration.parse(XML11Configuration.java:807)
at com.sun.org.apache.xerces.internal.parsers.XML11Configuration.parse(XML11Configuration.java:737)
at com.sun.org.apache.xerces.internal.parsers.XMLParser.parse(XMLParser.java:107)
at com.sun.org.apache.xerces.internal.parsers.DOMParser.parse(DOMParser.java:225)
at com.sun.org.apache.xerces.internal.jaxp.DocumentBuilderImpl.parse(DocumentBuilderImpl.java:283)
at javax.xml.parsers.DocumentBuilder.parse(DocumentBuilder.java:180)
at XMLParser.Parse(XMLParser.java:89)
at Main.main(Main.java:116)
</code></pre>
<p><strong>89 line number points to -> doc = builder.parse(xmlDataFile);</strong></p>
http://stackoverflow.com/questions/1801998/parsing-with-dcgs-in-scheme-without-prolog2Parsing with DCGs in Scheme (without Prolog)?z5h2009-11-26T07:05:10Z2009-12-03T10:50:13Z
<p>Lots of Prolog-in-Scheme implementations are out there. E.g. Kanren, Schelog.</p>
<p>Apparently in "Paradigms of AI Programming" Norvig implements Prolog-to-Lisp compiler in Lisp in order to use Definite Clause Grammars.</p>
<p>But is there a simpler cleaner way? Maybe some clever use of amb to avoid implementing a full "Prolog"?
What is the easiest way to have DCG-based parsing in Scheme? </p>
http://stackoverflow.com/questions/1835177/how-to-use-xmlreader-in-php0How to use XMLREADER in php?Shadi Almosri2009-12-02T19:17:27Z2009-12-03T10:36:34Z
<p>I have the following XML file, the file is rather large and i haven't been able to get simplexml to open and read the file so i'm trying XMLREADER with no success in php</p>
<pre><code><?xml version="1.0" encoding="ISO-8859-1"?>
<products>
<last_updated>2009-11-30 13:52:40</last_updated>
<product>
<element_1>foo</element_1>
<element_2>foo</element_2>
<element_3>foo</element_3>
<element_4>foo</element_4>
</product>
<product>
<element_1>bar</element_1>
<element_2>bar</element_2>
<element_3>bar</element_3>
<element_4>bar</element_4>
</product>
</products>
</code></pre>
<p>I've unfortunately not found a good tutorial on this for PHP and would love to see how i can get each element content to store in a database.</p>
<p>Cheers!</p>
http://stackoverflow.com/questions/1837854/parsing-line-and-selecting-values-corresponding-to-a-key-1Parsing line and selecting values corresponding to a keygagneet2009-12-03T05:33:18Z2009-12-03T07:36:59Z
<p>I have a list of values, which are arranged in a specific manner in my flat data file:</p>
<pre><code>11=1 2
11=1>1=45 1
11=1>1=45>9=16 1
11=1>1=45>9=16>2=34 1
11=1>1=45>9=16>2=34>7=0 1
11=1>1=45>9=16>2=34>7=0>8=0 1
11=1>1=45>9=16>2=34>7=0>8=0>0=138 1
11=1>1=45>9=16>2=34>7=0>8=0>0=138>5=0 1
11=1>1=45>9=16>2=34>7=0>8=0>0=138>5=0>4=0 1
11=1>1=45>9=16>2=34>7=0>8=0>0=138>5=0>4=0>6=10 1
11=1>1=45>9=16>2=34>7=0>8=0>0=138>5=0>4=0>6=10>3=11 0
11=1>1=47 1
11=1>1=47>9=16 1
11=1>1=47>9=16>2=34 1
11=1>1=47>9=16>2=340>7=0 1
11=1>1=47>9=16>2=34>7=0>8=0 1
11=1>1=47>9=16>2=34>7=0>8=0>0=138 1
11=1>1=47>9=16>2=34>7=0>8=0>0=138>5=0 1
11=1>1=47>9=16>2=34>7=0>8=0>0=138>5=0>4=0 1
11=1>1=47>9=16>2=34>7=0>8=0>0=138>5=0>4=0>6=10>3=11 0
</code></pre>
<p>In another file, I have the keys which can be given in any order. An sample file can be :</p>
<pre><code>5=0
4=0
6=10
3=11
11=1
1=45
0=138
9=16
2=34
7=0
8=0
</code></pre>
<p>For this list of keys, the function should return 11=1>1=45>9=16>2=34>7=0>8=0>0=138>5=0>4=0>6=10>3=11 0 as the match. The last line in the first pyramid. Likewise, for another input file, in which another set of keys is given:</p>
<pre><code>5=0
4=0
6=10
3=11
11=1
1=45
9=16
2=34
7=0
8=0
</code></pre>
<p>the function should return 11=1>1=45>9=16>2=34>7=0>8=0 1 as the match. The sixth line in the first pyramid. </p>
<p>So, I want to be less greedy and the exact number of parameters so that one of the smaller lines are returned. I do not want the additional key values for which are not specified in the key file to be returned as the answer line. </p>
<p>Also, I want to find out how many nodes were selected in the given array. (separated by >).</p>
<p>What will be the best way to implement this kind of scenario? </p>
http://stackoverflow.com/questions/1830801/php-soapclient-call-response-missing-parts-of-answer0PHP SoapClient call response missing parts of answerRyan Ahearn2009-12-02T05:21:13Z2009-12-02T23:56:13Z
<p>I am having trouble with PHP parsing of a SoapClient call's response. For some types of answers, it is returning arrays of empty stdClass objects instead of initialized stdClass objects.</p>
<p>The server is a java webservice deployed with axis2 on tomcat6. The Java signature of the problematic service call is <code>public Course getCourseDetails(Long courseId)</code> Course is a standard POJO defined as:</p>
<pre><code>public class Course {
private Long id;
private List<Hole> holes;
private String name;
private String tees;
//etc...
}
</code></pre>
<p>Hole is a standard POJO with only primative members.</p>
<p>When called with PHP, the holes member is an array with the correct length, but each hole is empty.</p>
<pre><code>$args = array();
$args["courseId"] = $courseId;
$response = $client->getCourseDetails($args);
$course = $response->return;
//course has all of its primitive members set correctly: good
$holes = $course->holes;
//holes is an array with count = 18: good
$hole = $holes[0];
//hole is an empty stdClass: bad
</code></pre>
<p>Printing out the returned XML with <code>$soapClient->__getLastResponse()</code> what looks like the correct representation:</p>
<pre><code><?xml version='1.0' encoding='utf-8'?>
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
<soapenv:Body>
<ns:getCourseDetailsResponse xmlns:ns="http://webservice.golfstats">
<ns:return xmlns:ax21="http://datastructures.server.golfstats/xsd" xmlns:ax22="http://util.java/xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:ax24="http://uuid.eaio.com/xsd" xsi:type="ax21:Course">
<ax21:courseLocation>Faketown, VA</ax21:courseLocation>
<ax21:courseName>Fake Links</ax21:courseName>
<ax21:dateAdded>2003-01-02</ax21:dateAdded>
<ax21:holes><ax21:id>1</ax21:id><ax21:number>1</ax21:number><ax21:par>4</ax21:par><ax21:yardage>345</ax21:yardage></ax21:holes>
<ax21:holes><ax21:id>2</ax21:id><ax21:number>2</ax21:number><ax21:par>3</ax21:par><ax21:yardage>150</ax21:yardage></ax21:holes>
<ax21:holes><ax21:id>3</ax21:id><ax21:number>3</ax21:number><ax21:par>5</ax21:par><ax21:yardage>502</ax21:yardage></ax21:holes>
<ax21:holes><ax21:id>4</ax21:id><ax21:number>4</ax21:number><ax21:par>4</ax21:par><ax21:yardage>345</ax21:yardage></ax21:holes>
<ax21:holes><ax21:id>5</ax21:id><ax21:number>5</ax21:number><ax21:par>4</ax21:par><ax21:yardage>345</ax21:yardage></ax21:holes>
<ax21:holes><ax21:id>6</ax21:id><ax21:number>6</ax21:number><ax21:par>4</ax21:par><ax21:yardage>345</ax21:yardage></ax21:holes>
<ax21:holes><ax21:id>7</ax21:id><ax21:number>7</ax21:number><ax21:par>4</ax21:par><ax21:yardage>345</ax21:yardage></ax21:holes>
<ax21:holes><ax21:id>8</ax21:id><ax21:number>8</ax21:number><ax21:par>4</ax21:par><ax21:yardage>345</ax21:yardage></ax21:holes>
<ax21:holes><ax21:id>9</ax21:id><ax21:number>9</ax21:number><ax21:par>4</ax21:par><ax21:yardage>345</ax21:yardage></ax21:holes>
<ax21:holes><ax21:id>10</ax21:id><ax21:number>10</ax21:number><ax21:par>4</ax21:par><ax21:yardage>345</ax21:yardage></ax21:holes>
<ax21:holes><ax21:id>11</ax21:id><ax21:number>11</ax21:number><ax21:par>4</ax21:par><ax21:yardage>345</ax21:yardage></ax21:holes>
<ax21:holes><ax21:id>12</ax21:id><ax21:number>12</ax21:number><ax21:par>4</ax21:par><ax21:yardage>345</ax21:yardage></ax21:holes>
<ax21:holes><ax21:id>13</ax21:id><ax21:number>13</ax21:number><ax21:par>4</ax21:par><ax21:yardage>345</ax21:yardage></ax21:holes>
<ax21:holes><ax21:id>14</ax21:id><ax21:number>14</ax21:number><ax21:par>4</ax21:par><ax21:yardage>345</ax21:yardage></ax21:holes>
<ax21:holes><ax21:id>15</ax21:id><ax21:number>15</ax21:number><ax21:par>4</ax21:par><ax21:yardage>345</ax21:yardage></ax21:holes>
<ax21:holes><ax21:id>16</ax21:id><ax21:number>16</ax21:number><ax21:par>4</ax21:par><ax21:yardage>345</ax21:yardage></ax21:holes>
<ax21:holes><ax21:id>17</ax21:id><ax21:number>17</ax21:number><ax21:par>4</ax21:par><ax21:yardage>345</ax21:yardage></ax21:holes>
<ax21:holes><ax21:id>18</ax21:id><ax21:number>18</ax21:number><ax21:par>4</ax21:par><ax21:yardage>345</ax21:yardage></ax21:holes>
<ax21:id>1</ax21:id>
<ax21:rating>68.5</ax21:rating>
<ax21:slope>113</ax21:slope>
<ax21:tees>Blue</ax21:tees>
</ns:return>
</ns:getCourseDetailsResponse>
</soapenv:Body>
</soapenv:Envelope>
</code></pre>
<p>Why is each hole an empty stdClass? Are there known limitations to the number of levels SoapClient will parse a response?</p>