Tagged Questions

0
votes
2answers
69 views

What is the copy constructor bug causing parsing errors?

I'm writing a compiler for a small language, and my Parser class is currently in charge of building an AST for use later. However, recursive expressions are not working correctly because the vector in …
0
votes
1answer
43 views

Automatic Documentation - Best method for creating a quick parser

I have a large script that end-users need to edit so it requires somewhat redundant commenting. I use a layout for my files similar to this //******************** // // FileName // This script …
1
vote
6answers
45 views

Program capable of opening a large XML file in windows

Hiya All, I need to parse and process an XML feed, unfortunately the feed is about 110mb in size (and i cannot do anything about it) but to be able to parse it i need to see the structure (or if …
2
votes
1answer
31 views

LALR(2) dangling else

Hello Is LALR(2) able to handle the dangling else case naturally (without any special rules, as with LALR(1))? Thanks
1
vote
2answers
53 views

Regex, writing a toy compiler, parsing, comment remover

Hi, I'm currently working my way through this book: http://www1.idc.ac.il/tecs/ I'm currently on a section where the excersize is to create a compiler for a very simple java like language. The book …
4
votes
9answers
178 views

When is it wise to use regular expressions with HTML?

While it's absolutely true that regexp are not the right tool to fully parse HTML documents, I am seeing a lot of people blindly disregarding any question about regexp if they as much as see as single …
0
votes
2answers
38 views

PHP - complete url parser help

I have been trying to find an effective url parser, php's own does not include subdomain or extension. On php.net a number of users had contributed and made this: function parseUrl($url) { $r = …
1
vote
3answers
49 views

Escaping characters in large XML files

I have large XML files of 100s of MB. Are there any utilities that can parse XML files and escape special charaters in strings without opening the entire file into memory at once? Thanks
10
votes
9answers
209 views

Ideas for Natural Language Processing project?

I have to do a final project for my computational linguistics class. We've been using OCaml the entire time, but I also have familiarity with Java. We've studied morphology, FSMs, collecting parse …
0
votes
1answer
28 views

Converting an eregi_replace to a preg_replace

I am trying to parse some HTML snippets and want to clean them up for various reasons (XSS et al). I am currently trying to remove all of the attributes on any tag, except for the href on a anchor. …
0
votes
1answer
31 views

Shift Reduce Conflict

import java_cup.runtime.*; import java.io.*; import java.util.*; /* Preliminaries to set up and use the scanner. */ parser code {: SMPLLexer lexer; public SMPLParser (SMPLLexer lex) { …
0
votes
2answers
40 views

Is there a library for reading /var/spool/mail/ files?

How does one parse the mail files generated on a Linux system using Java? I mean, I want to be able to extract the From, To, Timestamp and Subject of the various emails inside the file. Any …
0
votes
6answers
104 views

Convert fraction to float?

Kind of like this question, but in reverse. Given a string like 1, 1/2, or 1 2/3, what's the best way to convert it into a float? I'm thinking about using regexes on a case-by-case basis, but perhaps …
0
votes
3answers
122 views

Am I incorrectly using atoi?

I was having some trouble with my parsing function so I put some cout statements to tell me the value of certain variables during runtime, and I believe that atoi is incorrectly converting characters. …
6
votes
8answers
266 views

What is parsing?

Parsing is something i come accross alot in development, but as a junior its one of those things i assume i will get the hang of at some point, when its needed. In my current project ive been told to …

1 2 3 4 5 76 next
15 30 50 per page