10
votes
8answers
882 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, …
5
votes
12answers
356 views
What is so wrong with extract()?
Hey everyone,
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 …
4
votes
3answers
544 views
Algorithms for named entity recognition
Hello!
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 …
3
votes
2answers
84 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 …
3
votes
1answer
288 views
Extract Directory Inside Zip
Hey!
I'm writing a script to extract files from a zip archive into the directory that the script is located.
Here's my code:
$zip = new ZipArchive;
if ($zip->open('latest.zip') === TRUE) {
…
3
votes
5answers
1k views
C/C++ Code to treat a character array as a bitstream
I have a big lump of binary data in a char[] array which I need to interpret as an array of packed 6-bit values.
I could sit down and write some code to do this but I'm thinking there has to be a …
3
votes
4answers
859 views
How can I extract XML of a website and save in a file using Perl’s LWP?
How can I extract information from a website (http://tv.yahoo.com/listings) and then create an XML file out of it? I want to save it so to parse later and display information using JavaScrit?
I am …
3
votes
4answers
497 views
How do I extract the version and path from an SVN working copy into a nant variable?
I am creating a new build process for a DotNet project which is to be held in Subversion.
For each dll/exe that I compile (via Nant) I would like to include 2 additional attibutes in the dlls that …
3
votes
8answers
8k 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, …
2
votes
1answer
146 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 …
2
votes
4answers
84 views
Using String methods instead of Regex
hello
as i am not very familiar with regex, is it possible (whether its hard to do or not) to extract certain text inbetween symbols? for example:
<meta name="description" content="THIS IS THE …
2
votes
1answer
172 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
2
votes
6answers
966 views
Perl: Extract lines between two line delimiters
Hi,
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 …
2
votes
3answers
120 views
PHP - extract() type
Hello,
PHP's extract() function can take on one of several extract_types. But what's the difference between extr_prefix_same and extr_prefix_if_exists? The manual makes it sound like, in either case, …
2
votes
5answers
603 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.
…
