3
votes
2answers
42 views
Practical consequences of formal grammar power?
Every undergraduate Intro to Compilers course reviews the commonly-implemented subsets of context-free grammars: LL(k), SLR(k), LALR(k), LR(k). We are also taught that for any given k, each of those …
0
votes
1answer
22 views
Trouble Scraping Web Page With Malformed Content
I have written c# code which utilizes the HtmlAgilityPack library in order to scrape a page located at: World's Largest Urban Areas (Page 2). Unfortunately the page consists of malformed content.
…
0
votes
3answers
51 views
split svnversion output in bash
I have this function, works fine, but I would like to rewrite it in bash. the problem is, I have too little knowledge of what's available in bash.
#!/usr/bin/python
def parse_svnversion(value):
…
3
votes
1answer
54 views
How can I make SimpleDateFormat.parse() fail when month is greater than 12?
I'm using java.text.SimpleDateFormat to parse strings of the form "yyyyMMdd".
If I try to parse a string with a month greater than 12, instead of failing, it rolls over to the next year. Full …
2
votes
4answers
73 views
Keyword Matching in Pyparsing: non-greedy slurping of tokens
Pythonistas:
Suppose you want to parse the following string using Pyparsing:
'ABC_123_SPEED_X 123'
were ABC_123 is an identifier; SPEED_X is a parameter, and 123 is a value. I thought of the …
1
vote
3answers
77 views
Most efficient method to parse small, specific arguments
I have a command line application that needs to support arguments of the following brand:
all: return everything
search: return the first match to search
all*search: return everything matching …
0
votes
2answers
42 views
Parsing SVG path in objective-c
Hi, i need to parse some paths of an SVG file, they are simple lines. When retrieving the data i end up with this string:
m 0,666.6479 254.28571,0
According to SVG specifications m denotes a new …
0
votes
7answers
143 views
Parsing a comma-delimited std::string
If I have a std::string containing a comma-separated list of numbers, what's the simplest way to parse out the numbers and put them in an integer array?
I don't want to generalise this out into …
1
vote
3answers
143 views
How can I match “/*” in a regular expression?
Hello all.
$stuff = "d:/learning/perl/tmp.txt";
open STUFF, $stuff or die "Cannot open $stuff for read :$!";
while (<STUFF>) {
my($line) = $_; # Good practice to always strip the trailing
…
0
votes
3answers
43 views
Sax parsing and encoding
I have a contact that is experiencing trouble with SAX when parsing RSS and Atom files. According to him, it's as if text coming from the Item elements is truncated at an apostrophe or sometimes an …
0
votes
4answers
142 views
Intelligent RegEx in Perl?
Background
Consider the following input:
<Foo
Bar="bar"
Baz="1"
Bax="bax"
>
After processing, I need it to look like the following:
<Foo
Bar="bar"
Baz="1"
…
2
votes
2answers
28 views
Example code for dynamic parsing techniques
I would like to learn how to write dynamic parsers to perform tasks such as code-completion, highlighting, etc.
I have read the dragon book and written some parsers, but I would like more experience …
4
votes
5answers
55 views
What is the difference between an Abstract Syntax Tree and a Concrete Syntax Tree?
I've been reading a bit about how interpreters/compilers work, and one area where I'm getting confused is the difference between an AST and a CST. My understanding is that the parser makes a CST, …
5
votes
6answers
265 views
What do people mean when they say “Perl is very good at parsing”? [closed]
What do people mean when they say "Perl is very good at parsing"?
How is Perl any better or more powerful than other scripting languages such as Python or Ruby?
1
vote
5answers
99 views
Parsing multilevel text list
I need to parse text lists:
1 List name
1 item
2 item
3 item
2 List name
1 item
2 item
3 item
3 List name
1 item
2 item
3 item
I was trying to use regular expression to split first level list:
…
