Tagged Questions
The extract tag has no wiki summary.
52
votes
6answers
79k views
How to parse the Manifest.mbdb file in an iOS 4.0 iTunes Backup
In iOS 4.0 Apple has redesigned the backup process.
iTunes used to store a list of filenames associated with backup files in the Manifest.plist file, but in iOS 4.0 it has moved this information to ...
28
votes
15answers
68k views
How to extract img src, title and alt from html using php?
I would like to create a page where all images which reside on my website are listed with title and alternative representation.
I already wrote me a little program to find and load all html files, ...
18
votes
8answers
3k views
How can I split multiple joined words?
I have an array of 1000 or so entries, with examples below:
wickedweather
liquidweather
driveourtrucks
gocompact
slimprojector
I would like to be able to split these into their respective words, ...
15
votes
4answers
26k views
Java: export to an .jar file in eclipse
Im trying to export a program in eclipse to a .jar file. To my project in I have added some pictures and pdf. When im exporting to jar file, it seems that only the main has ben compiled and exported. ...
10
votes
7answers
803 views
Programmatically Extract PDF Tables
I have a bunch of PDF docs with tabular data in them which I need to extract into a more readable format to store in a spreadsheet, database or whatever.
Is there anything out in the world ...
9
votes
3answers
1k views
Extract images from PDF without resampling, in python?
How might one extract all images from a pdf document, at native resolution and format? (Meaning extract tiff as tiff, jpeg as jpeg, etc. and without resampling). Layout is unimportant, I don't care ...
9
votes
3answers
3k views
Algorithms for named entity recognition
I would like to use named entity recognition (NER) to find adequate tags for texts in a database.
I know there is a Wikipedia article about this and lots of other pages describing NER, I would ...
8
votes
2answers
207 views
How to select part of a Timestamp in a SQL Query
In the DB I am working with, I want to select only the year from a specific TimeStamp field. In particular, I'm hoping to select the unique years from this database column.
For instance, if all of ...
8
votes
3answers
524 views
Extracting text from PDFs in C#
Pretty simply, I need to rip text out of multiple PDFs (quite a lot actually) in order to analyse the contents before sticking it in an SQL database.
I've found some pretty sketchy free C# libraries ...
7
votes
1answer
102 views
Java: How to get individual int values out of int[][]
I have an int[][] object. It is defined in my code as below:
public int[][] position = {
{20, 30}, {73, 91},
{82, 38}
};
Would it be possible to get the value of the first value (on the ...
7
votes
3answers
3k views
Extract the SHA1 hash from a torrent file
I've had a look around for the answer to this, but I only seem to be able to find software that does it for you. Does anybody know how to go about doing this in python?
7
votes
4answers
488 views
Is there a tool which can extract all SQL command strings from Delphi form files?
For documentation and further inspection, I would like to run an 'extract strings' on all DFM files in many projects to find all SQL statements. Are there command line tools which can do this? The DFM ...
6
votes
4answers
108 views
How to securely create PHP variables with extract
In my previous post i ask how to create variables from an array ( PHP Variables made with foreach ) i got several answers and i was testing extract() but i have seen several against it for security ...
6
votes
3answers
2k views
Extract a ZIP file programmatically by DotNetZip library?
I have a function that get a ZIP file and extract it to a directory
(I use DotNetZip library.)
public void ExtractFileToDirectory(string zipFileName, string outputDirectory)
{
ZipFile zip = ...
6
votes
3answers
1k views
Extract everything from PDF
Looking for PDF content extractor (console tool or library).
It will be used on server to produce on-line e-books from uploaded PDF files.
Need to extract following things:
text with fonts and ...
6
votes
7answers
5k views
How can I extract text from a PDF file in Perl?
I am trying to extract text from PDF files using Perl. I have been using pdftotext.exe from command line (i.e using Perl system function) for extracting text from PDF files, this method works fine.
...
5
votes
4answers
348 views
Extract Image from PDF using Java
i am working the a project. what i need to do is extract image from PDFs file. it is a bit
different from the similar questions. the PDFs are like these. Documents are printed out
first, then they ...
5
votes
1answer
574 views
Save Icon File To Hard Drive
I know that this must be incredibly easy - It's unbelievable how long I have searched for an answer to this question based on how simple it is in VB6. I simply want to extract an Icon from an EXE File ...
5
votes
4answers
237 views
Extract Strings from Java Classes
I want to extract all Strings (texts, written in " ") in hundreds of java classes, to get them to a translator for a multilanguage platform translation.
Does somebody have an idea how I could do ...
5
votes
2answers
599 views
Compare two associative arrays and create a new array with the matched arrays, PHP
I have this two arrays:
$arr1=array( array("id" => 8, "name" => "test1"),
array("id" => 4, "name" => "test2"),
array("id" => 3, "name" => "test3")
...
5
votes
3answers
171 views
Using arrays with other arrays in Python
Trying to find an efficient way to extract all instances of items in an array out of another.
For example
array1 = ["abc", "def", "ghi", "jkl"]
array2 = ["abc", "ghi", "456", "789"]
Array 1 is an ...
5
votes
3answers
246 views
How does one extract the name of a variable in a function that is called from another function in R?
My question is how to extract the name of a variable from a function that is called in another function in R?
To illustrate, here is an example:
a <- function(variable) {
...
5
votes
3answers
302 views
Most efficient way to extract all the (natural) numbers from a string
Users may want to delimit numbers as they want.
What is the most efficient (or a simple standard function) to extract all the (natural) numbers from a string?
5
votes
2answers
2k views
Extract image from PDF using .Net c#
I want to extract images from PDF. Tried many solutions but still not getting solution. Help me out....Thanks in advance
5
votes
4answers
7k views
how to extract domain name from URL
how would you extract the domain name from a URL, excluding any subdomains?
My initial simplistic attempt was:
'.'.join(urlparse.urlparse(url).netloc.split('.')[-2:])
This works for ...
5
votes
12answers
623 views
What is so wrong with extract()?
I was recently reading this thread, on some of the worst PHP practices.
In the second answer there is a mini discussion on the use of extract(), and im just wondering what all the huff is about.
I ...
5
votes
1answer
12k views
Extracting Path from OpenFileDialog path/filename
I'm writing a little utility that starts with selecting a file, and then I need to select a folder. I'd like to default the folder to where the selected file was.
OpenFileDialog.FileName returns the ...
4
votes
3answers
70 views
Can I extract function return value?
I noticed that in PHP extract(some_function()); will work just like:
$stuff = some_function();
extract($stuff);
But in the PHP's documentation the extract function argument has the & thingy in ...
4
votes
1answer
101 views
Need to extract a specific text node to hide or remove it using JQuery
I have a blog on WordPress that I have control over in order to edit and format the RSS feed content. I have another website on which I want to display the excerpts of the posts from my blog, then ...
4
votes
1answer
100 views
Ocaml: matching on one item in a pair
I have a function that takes in a temp, which is a pair.
type temp = (pd * string);;
I want to extract that string in temp. But I can't write a function that can just match on temp since its a ...
4
votes
2answers
519 views
Extract HTML from URL
I'm using Boilerpipe to extract text from url, using this code:
URL url = new URL("http://www.example.com/some-location/index.html");
String text = ArticleExtractor.INSTANCE.getText(url);
the ...
4
votes
1answer
851 views
Extracting lift-json into a case class with an upper bound
I have spent the last day searching and reading various sites and articles to try to find the answer to this question myself and I haven't found anything that helps. I'm not even sure if this is ...
4
votes
4answers
505 views
How to extract a single file from a remote archive file?
Given
URL of an archive (e.g. a zip file)
Full name (including path) of a file inside that archive
I'm looking for a way (preferably in Java) to create a local copy of that file, without ...
4
votes
5answers
229 views
parse my proprietary string format
How can we get the numbers 7 and 4 and 5 from the following string:
MODULE potmtpMAIN main <info: "Enterprise Optimizer 7.4 for COR Technology 5.5 --
Advanced Solver Edition", ...
4
votes
3answers
365 views
How to extract ALL typedefs and structs and unions from c++ source
I have inherited a Visual Studio project that contains hundreds of files.
I would like to extract all the typedefs, structs and unions from each .h/.cpp file and put the results in a file).
Each ...
4
votes
3answers
3k views
Extracting image from PDF with /CCITTFaxDecode filter
I have a pdf that was generated from scanning software. The pdf has 1 TIFF image per page. I want to extract the TIFF image from each page.
I am using iTextSharp and I have successfully found the ...
4
votes
2answers
479 views
How do I move a Git branch out into its own repository?
I have a branch that I'd like to move into a separate Git repository, and ideally keep that branch's history in the process. So far I've been looking at git filter-branch, but I can't make out ...
4
votes
5answers
2k views
how to extract formatted text content from PDF
How can I extract the text content (not images) from a PDF while (roughly) maintaining the style and layout like Google Docs can?
4
votes
1answer
893 views
Python: Extracting data from buffer with ctypes
I am able to successfully call a function with ctypes in Python. I now have a buffer that is filled with Structures of data I want to extract. What is the best strategy for this? Anything else I ...
4
votes
7answers
8k views
How do I extract lines between two line delimiters in Perl?
I have an ASCII log file with some content I would like to extract. I've never taken time to learn Perl properly, but I figure this is a good tool for this task.
The file is structured like this:
...
4
votes
2answers
9k views
MATLAB: Extract multiple parts of a matrix without using loops
I have a huge 2D matrix and I would like to extract 15 different 100x100 parts out of it. I have two vectors x and y where the top left indices of the parts are saved. I have used something like this:
...
4
votes
3answers
4k views
How to extract image urls from HTML File in C#
Can anyone help me by explaining how to extract image urls from HTML File in C#
3
votes
1answer
81 views
How can I extract the date from the “Media Created” column of a video file?
I need to extract the date from the "Media Created" column (highlighted in green in my the example photo below) using C#.
In my example, the "Media Created" and "Date" columns are the exact same. ...
3
votes
2answers
327 views
Extract data from HTML table using Python
I want to extract data from HTML table using Python script and save it as variables(that I can later use in same script after loading them in if they exist) into a separate file. Also I want the ...
3
votes
3answers
342 views
Gstreamer - Convert command line gst-launch to C code
I have been making a few experiments with GStreamer by using the gst-launch utility. However, ultimately, the aim is to implement this same functionality on my own application using GStreamer ...
3
votes
3answers
138 views
How can I write a Perl script to extract the source code of each subroutine in a Perl package?
Given a Perl package Foo.pm, e.g.
package Foo;
use strict;
sub bar {
# some code here
}
sub baz {
# more code here
}
1;
How can I write a script to extract the textual source code for ...
3
votes
4answers
161 views
extract text using vim
I would like to extract some data from a text with vim..
the data is of this kind:
72" title="(168,72)" onmouseover="posizione('(168,72)');" onmouseout="posizione('(-,-)');">>
72" ...
3
votes
2answers
185 views
Extract the resource file
I have attached a resource file to an existing exe file using UpdateResource funtion.
How can i extract it?
Edit
This is my code to attach a resource file to an existing exe file :
Uses Classes, ...
3
votes
1answer
140 views
Soliciting analogies for arguments to “[”
I have come around to thinking of arguments to "[" as being similar to machine gun belts:
set.seed(10)
datfrm <- data.frame(a= rev(letters[1:10]), b = runif(10), cc = letters[1:10] )
...
3
votes
3answers
539 views
Get min and max value in PHP Array
I have an array like this:
array (0 =>
array (
'id' => '20110209172713',
'Date' => '2011-02-09',
'Weight' => '200',
),
1 =>
array (
'id' => '20110209172747',
'Date' => ...