Parsing refers to the action by software of breaking an artifact into its constituent elements and capturing the relationship between those elements. When the artifact is a stream of arbitrary text, parsing is often used to mean breaking the stream into constituent atoms (words or lexemes). When ...

learn more… | top users | synonyms (3)

1
vote
1answer
11 views

Adding a Library so that It can be used in all projects

I am attempting to do some Html parsing in a C#. After searching SO for insights into where I should begin, at Parsing HTML with c#.net I found references and high praise of this: ...
3
votes
1answer
26 views

Understanding useDelimiter in Scanner : why I get blank token?

I'm using scanner with delimiter and I've came across a strange behaviour I'd like to understand. I'm using this programm : Scanner sc = new Scanner("Aller à : Navigation, rechercher"); ...
1
vote
3answers
24 views

Parsing a string in quotes after a certain string

I'm having difficulties parsing a string. This is the structure I have: "Title":"Avatar","Year":"2009","Rated":"PG-13","Released":"18 Dec 2009","Runtime":"2 h 42 min" What I want to do is putting ...
0
votes
0answers
11 views

xml problems with linker

I do this tutorial and would like to link two different xml(url) links with two different UITableviewcontroller! Tutorial: http://www.xcode-tutorials.com/parsing-xml-files/ There was a coment of ...
0
votes
3answers
23 views

Making a form letter with PHP with text content from a variable from the POST

I am trying to make a form letter using PHP. I have a view that has a text area that has some pre-populated text. The text is like a letter: Dear So-and-so, etc. There are a few places that I need to ...
7
votes
0answers
27 views

FAQ markup to R data structure

I'm reading the R FAQ source in texinfo, and thinking that it would be easier to manage and extend if it was parsed as an R structure. There are several existing examples related to this: the ...
0
votes
1answer
35 views

Parsing specific data items from website

I tried to retrieve the following data variables from the this webpage Address City State Zip Code Store Phone Pharmacy Phone Open Hours Pharmacy Hours Pickup Options At this ...
0
votes
0answers
25 views

How to validate Expression/Grammar in C++ module interfaced to other languages using SWIG?

I am supposed to write an expression validator which would take mathematical expression/conditional statements/string comparisions as input and also the values of the variables part of the expression ...
0
votes
1answer
16 views

How can I use boost::gregorian to parse 2-digit years in C++?

The boost::gregorian::from_*string() parsing functions in Boost seem to only handle 4-digit years (causing a run-time error for 2-digit years). What's the cleanest way to use ...
1
vote
3answers
52 views

C parser for data separated with comma

What is the most effective way to write a parser in C for data with the following format: atr#1,atr#2,...,atr#n btr#1,btr#2,...,btr#n ... Each record is in new line and attributes are ...
1
vote
2answers
26 views

Java reads text file with extra whitespace and CRLF

I have a text file generated by PowerShell using the command GetChild-Item C:\Source\Path | ForEach-Object { $_.Name } > "C:\MyPlace\outfile.txt" This generates outfile.txt which opens like this ...
0
votes
1answer
27 views

Operator precedence and unary operators in irony

I'm having problems getting my grammar to work with unary operations. For instance, if I enter "-5/2" I get -(5/2), not (-5)/2 which I would like to get. In this particular case the difference does ...
0
votes
1answer
19 views

Skipping Commented Lines with QStrings

I would like to skip over commented lines in the text file that I am parsing using QStrings. How would one go about skipping over any line that starts with the character '#' for example? This is ...
0
votes
1answer
36 views

Parsing emails problems

I'm having problems with decoding emails that that I'm fetching. The script should log on to an email account, get the unread messages and then later on store them in a database. I only want the ...
1
vote
0answers
9 views

Blend 5 Preview designer crashes after VS rebuild

I am working on a big silverlight project, and have problems editing it in Blend; Initially, Blend starts properly, designer shows the controls, etc. However, unexpectedly, after parallel work in ...

1 2 3 4 5 743
15 30 50 per page