Parsing refers to breaking an artifact into its constituent elements and capturing the relationship between those elements. Do not use this tag for questions about the hosted service Parse.com (use [parse.com] instead) or about "parse errors" generated by PHP code (just use [php]).
5
votes
0answers
451 views
DXF Parser : Ellipses angle direction
I wrote my own ASCII DXF file parser and I encounter a problem with ellipses in some particular documents.
It seems that there is no "Group Code" defining the angle direction (Clockwise or ...
4
votes
0answers
485 views
How do i access v8 parse tree how can it be done?
I like to take the v8 engine and to transform its code to other programming language
based on this for example if i understand it right first step i need to get the parse tree
my question is :
can i ...
4
votes
0answers
411 views
Is this XPath query on parsing XHTML wrong? using TouchXML
I have been trying to parse a XHTML doc via TouchXML, but it always can't find any tags via XPath query.
Below is the XHTML:
XHTML <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
...
4
votes
0answers
705 views
libclang parsing generates wrong output
I am trying to build a small parsing program using libclang.
The source file to parse (Node.h):
#pragma once
struct Node {
int value;
struct Node *next;
};
The main program simple ...
3
votes
0answers
63 views
How do you match zero or more tokens in Jison?
I'm writing a simple expression parser in Jison allowing an arbitrary number of newlines to follow a binary operator in an expression. This is my grammar so far:
{
"operators": [
["left", ...
3
votes
0answers
87 views
Pretty-Printing PyParsing Trees
Have anyone implemented pretty printing (preferrably using Python's builtin pprint module) of parse-trees outputted from PyParsing preferrably with indentation and alignment?
3
votes
0answers
104 views
How can I incorporate ternary operators into a precedence climbing algorithm?
I followed the explanation given in the "Precedence climbing" section on this webpage to implement an arithmetic evaluator using the precedence climbing algorithm with various unary prefix and binary ...
3
votes
0answers
153 views
App-Engine Parse a UrlFetch UTF-8 encoded stream
I am trying to parse an XML from a URL using the xml.sax parser. I know there are other libraries to use but coming from Java this is the one I am most familiar with and seems the least complicated to ...
3
votes
0answers
473 views
How to parse single file using Python bindings to Clang?
I am writing simple tool to help with refactoring source code of our application. I would like to parse C++ code based on wxWidgets library which defines GUI and produce XML .ui file to use with Qt. I ...
3
votes
0answers
228 views
How to handle left recursion in FParsec
My languages uses s-expressions with one additional feature - a dot operator for accessing elements from an array or struct.
Currently, my parser works on this code using the access operator -
; ...
3
votes
0answers
392 views
Parsing Skype logs
I found a .dbb file, contactgroup256.dbb , and would like to read it. Can I load it into MySQL somehow? There's a python script to grab contact photos, but I was looking for just the name and phone ...
2
votes
0answers
34 views
Need help in extracting specific paragraph text and images from whole blog page html
I need help in html parsing. Before posting question here I tried to find this answer but couldn't find. I have stored complete html of blog page in a database table. Now I want to extract text and ...
2
votes
0answers
30 views
How to use boost date facets to parse strings which may not have leading zeros?
I'd like to use several boost::date_facet variations in C++03 to normalize some string input which can have a variety of different U.S. style formats, for example:
Feb. 04, 2012
Feb 04, 2012
...
2
votes
0answers
35 views
Match alphanumeric string in nltk grammar
I'm trying to use NTLK grammar and parse algorithms as they seem pretty simple to use. Though, I can't find a way to match an alphanumeric string properly, something like:
import nltk
grammar = ...
2
votes
0answers
67 views
Counting Methods declaration + Methods Calls in a class using JavaParser
I'm trying to code rfc metric (Response for a Class), it counts the Method declarations + Method Calls.
Method declarations works fine, but I got a problem at counting method calls using JavaParser ...
2
votes
0answers
143 views
What is the simplest way of parsing C++ source code (extracting meta-info) in Java?
I need to extract classes, methods and parameters from .c/.cpp files in Java code.
I've reviewed:
Antlr (can't find any ready c++ grammar for Java target),
gccxml (probably works but i can't test ...
2
votes
0answers
60 views
Output in Ruby gem Trollop
This is an example output from Trollop, the Ruby option parsing gem
v0.0.1a
Options:
--input, -i <s>: Input file location (required)
--output, -o <s>: Output file ...
2
votes
0answers
124 views
shift/reduce conflict in cup -parser
I wrote this grammer:
/* Precedences */
precedence left UMINUS;
precedence left ID;
Expr ::= ID:e
| NUM:e
| Expr:e1 TIMES Expr:e2
| LP Expr:e RP ...
2
votes
0answers
115 views
parse a date-time string into a time_t value with spirit
I need to parse a date-time string like 2012-12-21 12:10:35 into a time_t value using boost::spirit. here is my code snippet:
tc_ = lexeme[int_[phx::ref(tm_.tm_year)=(_1-1900)]>>'-'
...
2
votes
0answers
39 views
KDevelop 4.3.1 not parsing Eigen 3
I'm using KDevelop 4.3.1 on ubuntu 12.04. It's not parsing the Eigen 3 library, while this release note says it should.
It is a little more subtle than this.
KDevelop is parsing part of the Eigen ...
2
votes
0answers
244 views
Read PDF form data
I would like to create a PDF form that submits its data by POST to a PHP page. I want PHP to be able to read the data in the fields using $_POST[]
Is this possible?
I created a PDF in Acrobat Pro ...
2
votes
0answers
430 views
android error parsing package
I have the following problem:
My application download the latest version APK and save the APK file in the / data / data / package name / upgrade.
Until here everything works perfectly.
Then the ...
2
votes
0answers
193 views
Standalone Java Implementation for extracting values in URI Template (RFC 6570)?
Is there a Java standalone implementation to extract values ​​of parameters in an URI as defined by an URI-Template (RFC 6570)?
The best implementation I've found is a ruby implementation ( ...
2
votes
0answers
482 views
Parse xml data into interactive ListView with RadioGroup
UPDATE: I have solved my problem with the help of this I'll post if anyone interested.
this is my first post...please be gentle.
I have successfully parsed data from an xml file into a ListView. I ...
2
votes
0answers
106 views
strange strings in parsed web page?
I am trying to collect data from other pages. PHP Snoopy class and DOM Parser help me a lot. However, some of the pages I parsed contain random strange string components, such as "fe8", "1116" or ...
2
votes
0answers
60 views
Pyparsing parser for CoPATH natural language output fails to handle all records. Why?
I have a small pyparsing script, written mostly by McGuire himself (1), but it seems to miss quite a few records in the live data set. For example, it finds and properly parses 35 of 49 prostatectomy ...
2
votes
0answers
40 views
problems with child Appending while parsing xml file with DOM parser in Android
I'm trying to parse defined docx file in android to put them in the text field , image view and table layout.
but i'm stuck on child apending.
The text file is defined and separated with an known ...
2
votes
0answers
98 views
why is Time.zone.parse so much slower than DateTime.parse?
On my system(*), Time.zone#parse is almost 3.5x slower than DateTime#parse.
Since DateTime.parse already knows how to handle time zones, under what circumstances would you want to use ...
2
votes
0answers
125 views
Parse WinAPI function arguments and return type
Is there any command-line tool or a python script to parse windows header files (WinAPI functions) and print out it's return type and arguments? Maybe some MSVS command-line tool?
Something like:
...
2
votes
0answers
415 views
Deserialize a GWT-RPC response using C#
Is it possible to parse or deserialize a GWT-RPC response using C#? I can not seem to find any useful information about this ~serialized format.
I get the following response from the service and ...
2
votes
0answers
237 views
nicEdit bbcode on startup
i finally got nicEdit to run in bbCode mode with
$(document).ready(function() {
new nicEditor({xhtml : true, bbCode : true, buttonList : ['bold', 'italic', ...
2
votes
0answers
59 views
Creating YAML configuration files (parsed via as3yaml) instead of XML, in an Actionscript project
Has anyone used the as3yaml YAML parser for Actionscript? I have an Actionscript application (authored in the Flash IDE, not Flash Builder), which parses an XML configuration file on startup. I'd like ...
2
votes
0answers
128 views
Compiler tree api: get fully qualified name
I am using Java Compiler Tree API for parsing java sources.
Currently i have run into the following issue. Consider I have a method which uses imported varible of type "Foo". The class Foo resembles ...
2
votes
0answers
342 views
Undefined symbols for architecture x86_64: Index Interface
I am creating an interface called Index that will allow me to Index using either a hash table or a AVL tree. I am getting the following error:
Undefined symbols for architecture x86_64:
...
2
votes
0answers
146 views
Scala parsing mutually recursive functions for SML
I'm trying to write a parser in Scala for SML with Tokens. It almost works the way I want it to work, except for the fact that this currently parses
let fun f x = r and fun g y in r end;
instead of
...
2
votes
0answers
110 views
Adding positioned to Lexical/StdLexical in Scala
I'm creating a Lexer in the vein of StdLexical with a few changes in terms of behavior (but for the purposes of my question, a demonstration of how to add it to StdLexical would be fine). I'm trying ...
2
votes
0answers
171 views
Looking for a good way to parse command-line arguments in C# for an app that is similar to tf.exe (VS2010) in cli language complexity
The tf.exe is the CLI interface to the Team Foundation Server.
In my case the complexity and structure of the permutations of the command-line switches is similar. There are about two dozen of ...
2
votes
0answers
245 views
Scala parser combinators: retrieving the original string that the parser consumed
So i have a bunch of parsers like this:
object MyParser extends RegexParsers{
override val skipWhitespace = false
def blockLine = ((id ~ args) <~ ":") ~ ".*?".r ^^ {
case (blockID ~ ...
2
votes
0answers
378 views
iPhone - Parse SDK for Push Notifications, Compile Errors [Solved]
Im using the parse SDK in an existing iPhone project. I followed the steps for Xcode 3 in the quick start guide, however on compiling i get the following errors. I've no clue as to why they show up. ...
2
votes
0answers
115 views
Bottom-up parsing with boost-spirit
I wanted to create a rule in boost::spirit::qi that does bottom-up parsing.
I have this data structure:
struct Bnop;
typedef boost::variant<int,boost::recursive_wrapper<Bnop> > Expr;
...
2
votes
0answers
461 views
Why is Tika's ForkParser throwing a NoClassDefFoundError when Autodetect parser seems to work fine?
I'm using apache Tika 1.0. Using ForkParser, whenever I parse pdf files, I get the following NoClassDefFoundException:
java.lang.NoClassDefFoundError: ...
2
votes
0answers
135 views
Is it possible to create a HTML push parser with Nokogiri?
I'm trying to parse large HTML documents and extract information from them, so that I can create JSON documents with just the data that I want. I'm currently using a Nokogiri::HTML::SAX::Parser to ...
2
votes
0answers
297 views
clang(libclang) performance of parse/reparse Translation Unit
I have a question about parsing performance, when using clang(libclang) and particulary function clang_parseTranslationUnit and clang_reparseTranslationUnit.
I'm trying to optimize the process, but ...
2
votes
0answers
295 views
Decorating parse tree using attribute grammar
Given the following attribute grammar for type declarations, I need to be able to produce a parse tree for any given string, for example "A, B : C;", and then decorate the tree.
I can generally do ...
2
votes
0answers
243 views
YAML parsing - lex or hand-rolled?
I am trying to write a simple YAML parser, I read the spec from yaml.org,
before I start, I was wondering if it is better to write a hand-rolled parser, or
use lex (flex/bison). I looked at the ...
2
votes
0answers
131 views
Syntaxic analysis and parser
I want to parse something like that :
path.to.variable
"path" and "to" are object named "Instance" and variable reference a double.
I've got the following grammar :
expr ::= ...
2
votes
0answers
383 views
Lex parser: (end of buffer or a NUL) segfault
I have been experiencing segmentation fault problem problem with the lex parser written. Therefore i have added in debugging switch -d to the Makefile when building my program.
This is the output I ...
2
votes
0answers
127 views
Two level grammar
I am trying to determine whether suggested changes to the EcmaScript grammar introduce ambiguities.
The grammar is odd in a few ways
There is no regular or context free lexical grammar meaning ...
2
votes
0answers
296 views
How to decode a reserved escape character in a request URI on a web server?
It is pretty clear that a web server has to decode any escaped unreserved character (such as alphanums, etc) to do the URI comparison. For example, [http://www.xyz.com/~user/index.htm] shall be ...
2
votes
0answers
107 views
Is there a Java open source library for managing a NISO/ANSI Z39.19 controlled vocabulary in XML or SKOS format?
I need a Java library to parse thesauri files which adhere to the NISO/ANSI Z39.19 standard XML or SKOS format. Parsing these files and creating associated classes to represent the data doesn't seem ...