2
votes
3answers
438 views
PDF Text Extraction Approach Using OCR
Has anybody attempted to extract text from a PDF using an OCR library and Java? What did you find to be the most reliable library for text extraction. Most of the approaches I've …
0
votes
3answers
24 views
How to detect tabular data from a variety of sources
In an experimental project I am playing with I want to be able to look at textual data and detect whether it contains data in a tabular format. Of course there are a lot of cases t …
0
votes
1answer
63 views
chunking/text parsing using NLTK
I am trying to parse some text and diagram it, like you would a sentence. I am new to NLTK and am trying to find something in NLTK that will help me accomplish this. So far, I have …
0
votes
3answers
43 views
Using streamreader to read line containing this “//”?
Read a Text file having any line starts from "//" omit this line and moved to next line.
The Input text file having some seprate partitions. Find line by line process and this mark …
5
votes
6answers
199 views
How to do Erlang pattern matching using regular expressions?
When I write Erlang programs which do text parsing, I frequently run into situations where I would love to do a pattern match using a regular expression.
For example, I wish I cou …
2
votes
6answers
178 views
Python parsing bracketed blocks
What would be the best way in python to parse out chunks of text contained in matching brackets?
"{ { a } { b } { { { c } } } }"
should initially return:
[ "{ a } { b } { { { c …
1
vote
3answers
62 views
Determine locations mentioned in shortish (500 to 1000 words) piece of text using PHP
I'd like to find a way to take a piece of user supplied text and determine what addresses on the map are mentioned within the text. I'd be happy to use a free web service if it ex …
13
votes
9answers
1k views
Elegant structured text file parsing
I need to parse a transcript of a live chat conversation. My first thought on seeing the file was to throw regular expressions at the problem but I was wondering what other approac …
3
votes
4answers
176 views
What’s the best way(error proof / foolproof) to parse a file using python with following format?
########################################
# some comment
# other comment
########################################
block1 {
value=data
some_value=some other kind of data
…
0
votes
6answers
91 views
Java String parsing - {k1=v1,k2=v2,…}
I have the following string which will probably contain ~100 entries:
String foo = "{k1=v1,k2=v2,...}"
and am looking to write the following function:
String getValue(String …
1
vote
4answers
148 views
SimpleParse non-deterministic grammar until runtime
Hi
I'm working on a basic networking protocol in Python, which should be able to transfer both ASCII strings (read: EOL-terminated) and binary data.
For the latter to be possible, …
0
votes
1answer
77 views
Regular expression capture groups in Oracle PL/SQL
I'm trying to turn free-form text into something more structured. I have a complex pattern that matches the great majority (well above the minimum acceptable limit) of the data ava …
53
votes
43answers
5k views
Code Golf: Evaluating Mathematical Expressions
Challenge
Here is the challenge (of my own invention, though I wouldn't be surprised if it has previously appeared elsewhere on the web).
Write a function that takes a single
…
1
vote
2answers
53 views
Replacing text function in php
Hello, I want to clean up some parsed text such as
\n the said \r\n\r\n\r\n I look in your eyes my dear\r\n\r\nI see green rolling Forests\r\n\r\nI see the far away Sky\r\n\r\nThe …
0
votes
1answer
29 views
Format ParseException with JavaCC
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 asbeginLine, beginColumn, endColumn …
