Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

15
votes
4answers
2k views

What algorithm does Readability use for extracting text from URLs?

For a while, I've been trying to find a way of intelligently extracting the "relevant" text from a URL by eliminating the text related to ads and all the other clutter.After several months of ...
9
votes
2answers
193 views

Techniques for extracting the 'best' image from a webpage

I'm trying to build something akin to Facebook's "Share" functionality for my website. I've gotten to the point where I can accept a URL, scrape it for meta keywords and suitably get ...
7
votes
10answers
2k views

Extracting information from PDFs of research papers

I need a mechanism for extracting bibliographic metadata from PDF documents, to save people entering it by hand or cut-and-pasting it. At the very least, the title and abstract. The list of authors ...
6
votes
5answers
743 views

Recommendations for PDF text extraction

can anyone recommend a library/API for extracting the text and images from a PDF? We need to be able to get at text that is contained in pre-known regions of the document, so the API will need to give ...
6
votes
3answers
739 views

Extract part of a git repository?

Assume my git repository has the following structure: /.git /Project /Project/SubProject-0 /Project/SubProject-1 /Project/SubProject-2 and the repository has quite some commits. Now one of the ...
6
votes
5answers
1k views

efficient TIFF tile extraction C++

I am working with 1gb large tiff images of around 20000 x 20000 pixels. I need to extract several tiles (of about 300x300 pixels) out of the images, in random positions. I tried the following ...
6
votes
7answers
1k views

Programmatically extract keywords from domain names

Let's say I have a list of domain names that I would like to analyze. Unless the domain name is hyphenated, I don't see a particularly easy way to "extract" the keywords used in the domain. Yet I see ...
5
votes
1answer
573 views

What is the best perl module to extract text from a pdf?

What is the best way to extract text from a pdf?
4
votes
2answers
72 views

storing permissions into multi dimensional array php

OK, I am just trying to get better at making more loosely coupled classes etc in PHP just to improve my skills. I have a local test database on my computer and for the user table I have a column named ...
4
votes
7answers
356 views

How to make a Java Program unextractable

Sorry I am not very sure how to state the question title. My problem is like this, I had developed a Java program, and I wish to distribute it to my friends. So I export it to Jar file, but I don't ...
4
votes
3answers
579 views

Self-extracting Delphi program

I'm writing an updater program in Delphi7 which will be run once, but needs many files to run. What I'd like the achieve: User runs exe Exe unpacks files, runs updater If updater detects and error, ...
4
votes
3answers
673 views

Extract string from between quotations

I want to extract information from user-inputted text. Imagine I input the following: SetVariables "a" "b" "c" How would I extract information between the first set of quotations? Then the second? ...
4
votes
4answers
2k views

Extract the Text in a Element with JQuery

I want to extract the Text inside a Element with JQuery <div id="bla"> <span><strong>bla bla bla</strong>I want this text</span> </div> I want only the text ...
4
votes
3answers
2k views

How to get audio data from a MP3?

I'm working on an application that has to proccess audio files. When using mp3 files I'm not sure how to handle data (the data I'm interested in are the the audio bytes, the ones that represent what ...
4
votes
3answers
4k views

Regular expressions C# - is it possible to extract matches while matching?

Say, I have a string that I need to verify the correct format of; e.g. RR1234566-001 (2 letters, 7 digits, dash, 1 or more digits). I use something like: Regex regex = new ...
3
votes
2answers
100 views

Keyword extraction software

I am looking for a piece of software that, given some text, will extract the "meaningful" keywords. For example, in the sentence: StackExchange is an online community. I want "StackExchange" and ...
3
votes
1answer
54 views

Extracting duplicate lines from a data frame

I have a large data frame that Im working with, the first few lines are as follows: Assay Genotype Sample Result 1 001 G 1 0 2 001 A 2 ...
3
votes
2answers
87 views

how to extract text outside tags xml

I want to extract text outside tags. For example, <body> This is an exmaple <p> blablabla </p> <references> refer 1 refer 2 ...
3
votes
1answer
104 views

How to tell if the most obvious object in a picture is a shape?

Okay guys, I think I have done everything I can except one important thing: Shape Extraction. I already do this fairly in a fairly simple way, but there are some cases where it really messes up. The ...
3
votes
1answer
297 views

php regex and chinese characters

I'm trying to extract the date "25/01/2005", the company name "A One Investment Company Limited 大一投資有限公司", the Chinese name ...
3
votes
2answers
206 views

HTML data extraction

I'm accessing some website and I need to extract some data. To be more specific - from this part: <input type="hidden" value="1" name="d520783895194bd08750e47c744d553d"> I need to extract the ...
3
votes
2answers
494 views

Gmail e-mail address extractor

I am looking for a way to extract all the email addresses of all the recipients from my gmail account... I have never worked with the Gmail API so any beginning directions are welcome\ preferably php ...
3
votes
1answer
108 views

How can I extract all classes into separate file?

I'm using the Resharper trial and VS2008. Is it possible to extract all classes from one file into a separate file? I'm able to do this using Resharper but it only seems to work for individual ...
3
votes
4answers
369 views

improving data extraction from text file in Java

I have CSV file with sample data in this form : 220 30 255 0 0 Javascript 200 20 0 255 128 Thinking in java , where the first column is height, second thickness, next three are ...
3
votes
3answers
200 views

A specific string format with a number and character together represeting a certain item

I have a string which looks like this "a 3e,6s,1d,3g,22r,7c 3g,5r,9c 19.3", how do I go through it and extract the integers and assign them to its corresponding letter variable?. (i have integer ...
3
votes
1answer
96 views

Microsoft research on fact extraction from the web?

Some time ago I had accidentally found website which was apparently product of Microsoft research on fact extraction from the web, more specifically from the Wikipedia. Right now I would like to have ...
3
votes
4answers
8k views

How to extract data from a PDF?

My company receives data from an external company via Excel. We export this into SQL Server to run reports on the data. They are now changing to PDF format, is there a way to reliably port the data ...
3
votes
4answers
640 views

C++ - How can I extract a valid string within a string?

The Problem: I am trying to extract a valid game mode for Defense of the Ancients (DotA) from a game name using C++. Details: Game names can be, at most, 31 characters long There are three game ...
3
votes
1answer
2k views

How should I extract compressed folders in java?

I am using the following code to extract a zip file in Java. import java.io.*; import java.util.zip.*; class testZipFiles { public static void main(String[] args) { try { ...
3
votes
4answers
4k views

How to extract column from a multi-dimentional array?

Does anybody know how do to extract a column from a multidimentional array in Python?
3
votes
4answers
876 views

Best open source library or application to crawl and data mine web sites

I would like to know what is the best eopen-source library for crawling and analyzing websites. One example would be a crawler property agencies, where I would like to grab information from a number ...
2
votes
5answers
60 views

How to extract uppercase substrings from a String in Java?

I need a piece of code with which I can extract the substrings that are in uppercase from a string in Java. For example: "a:[AAAA|0.1;BBBBBBB|-1.90824;CC|0.0]" I need to extract CC BBBBBBB and AAAA ...
2
votes
2answers
59 views

Entities Extraction and removal from String

what I want to do is to extract sub-strings from a given string. For example String str = "Eminem - Not Afraid with lyrics 2010"; String str2 = "Eminem - Not Afraid (HQ)"; String str3 = " Eminem Not ...
2
votes
1answer
109 views

Extracting keywords from GOLD-Parser CGT-File

i have defined a grammar with many rules, that uses many keywords. imagine it like this (just with more of these rules and more keywords): <keyword> ::= 'public' | 'protected' | 'private' the ...
2
votes
3answers
232 views

C# WPF Detecting Extract Completion with DotNetZip?

I've been trying to work with Ionic.Zip (DotNetZip) for extracting downloaded zip files through a program. But I'm stuck when trying to detect when the Extraction process as completed. The library ...
2
votes
1answer
75 views

Python script to extract new data from file since it was last read

I am working on a python script to do the following:- I would like to read a log file every ten mins and on each read, I would like to extract any added data to the file since it was last read ...
2
votes
1answer
416 views

extracting all nouns, adjectives form a text via stanford parser

I'm trying to extract all nouns and adjectives from a given text via the Stanford parser. My current attempt is using pattern matching in the getChildrenAsList() of the Tree-Object for locating ...
2
votes
3answers
76 views

Contents of the string after failed extraction from istream

If I do this: ifstream stream("somefilewhichopenssuccesfully.txt"); string token; if( stream >> token ) cout << token; else cout << token; Is the output in the second case ...
2
votes
4answers
88 views

Regex - Extracting volume and chapter numbers from book titles

Hey, I'm trying to import some legacy data into a brand new system, it's almost done, but there's a huge problem! Assuming these kinda data: Blabla Vol.1 chapter 2 ABCD in the era of XYZ volume 2 ...
2
votes
2answers
198 views

Get the raw video and audio dump from a SWF video

I have a SWF movie (only animation, no Actionscript) and I would like to programatically extract the resulting video and audio and whatever resolution. What method would be the best way of going ...
2
votes
1answer
262 views

Extract values from a text body in Ruby

I need to extract some values from a multi-line string (which I read from the text body of emails). I want to be able to feed patterns to my parser so I can customize different emails later. I came up ...
2
votes
1answer
302 views

DBpedia Information Extraction Framework

Has anyone ever used the Wikipedia Data Extraction? I need to use it for work. Could you give other tools for extracting information on web pages? Thanks!
2
votes
1answer
194 views

Extracting small parts of large library (fx boost)

I would like to know if there is an automated way to extract a small portion of a large C++ library. Let's say I only need boost::rational in some project. However entire boost 1.42 takes up 279 MiB! ...
2
votes
4answers
170 views

Monitor ZIP File Extraction Python

I need to unzip a .ZIP archive. I already know how to unzip it, but it is a huge file and takes some time to extract. How would I print the percentage complete for the extraction? I would like ...
2
votes
4answers
244 views

Extract Geometry from Font

I'd like to be able to extract the geometry for each letter in a TrueType font file. Each letter would have a set of coordinates, assuming each letter is in its own grid. As a picture tells a ...
2
votes
3answers
498 views

PDF Text Extraction at hyperlink locations

Anybody know of a (FREE) SDK of some sort that can start text extraction at the point in the PDF Document where a hyperlink takes you to (within the same PDF document)? The links end up taking us to ...
2
votes
1answer
441 views

Extrakting Zip to SD-Card is very slow. How can i optimize performance?

my app downloads a zip with about 350 files. A mix of JPG and HTML files. The function i wrote to do it works just fine but the unzipping takes for ever. At first i thought the reason might be that ...
2
votes
2answers
155 views

Creating and Extracting a tgz archive in Rails

Does anyone know how to archive a folder and its contained files as a tgz archive using Rails? What I would like todo is archive the contents of the folder and then have another script which extracts ...
2
votes
0answers
368 views

Extracting japanese characters from pdf file using itext

I am trying to extract text from a pdf file that has japanese characters. I am using iText for this purpose However I am getting this exception. Exception in thread "main" ExceptionConverter: ...
2
votes
2answers
57 views

Is it a good idea to extract controller logic into a service that extends repository functionality

I had a controller POST action that is called List that accepts a status variable which can be the following values { "all", "active", "inactive}. Then I made repository calls based on the the value ...

1 2 3 4 5