extraction

Looking for a generic XMLrequest and data extraction script

Hello, I am also looking for a Python script to do the following: Send an http request to a remote geodata server and read the data into our existing Python geoprocessing scripts. Is there a generic script available so that I can customise it for the project in hand? Sincerely, David ...

How can I extract x, y and z coordinates from geographical data by Python?

I have geographical data which has 14 variables. The data is in the following format: QUADNAME: rockport_colony_SD RESOLUTION: 10 ULLAT: 43.625 ULLON: -97.87527466 LRLAT: 43.5 LRLON: -97.75027466 HDATUM: 27 ZMIN: 361.58401489 ZMAX: 413.38400269 ZMEAN: 396.1293335 ZSIGMA: 12.36359215 PME...

QTP: Get list of all links in an E-mail

I'm "developing" a test plan in Mercury/HP QuickTest Pro 9.1, in which I must extract a list of all links in an E-mail and perform logic against each of them. In this case, I am using Webmail, so the message will appear as a web page; though I hope to use Outlook later to replicate a more realistic UX. I am a Developer, not a Tester. C...

EXE extraction / decompiler

I have tried a few EXE extractor but they don't work on a lot of files. I am looking for something better. ...

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 of sites and aggregate them into my own site. For this I need to crawl the sites and extract the property ads. ...

How can I extract a bunch of numbers from a string?

Hi. This is the sample test file: Barcode:*99899801000689811* JSC4000I accountNumber:10006898Sequence Number:998 Envelopes: 1 LCD5010V Using jsl 'CUSOFF' for output page '6' Barcode:*99999901000673703* LCD5010V Using jsl 'CUSOFF' for output page '4' LCD5005V Using job 'A' for current page '4' So, in this file, how to s...

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 Regex(patternString); if (regex.IsMatch(stringToMatch)) { return true; } else { return false; ...

How can I extract pictures from a WBC file in C?

Someone ask me to help them extract their pictures from a Web Shots image collection file (.WBC). I tried XnView but it did not work. How can I do this in C? ...

Exchange mail attachment extraction using managed code

Does anyone know of a way to copy mail attachments of a particular extention from mail when they arrive from exchange 2003, into a shared directory using managed code? I know one way is to use vbscript, using sinks that exchange exposes. however I was wondering if anyone had seen a sample in managed code, perhaps using interop?? Any sa...

how to extract column from a multi-dimentional array

does anybody know how do to extract a column from a multidimentional array in python.. ...

How to extract data from a PDF file while keeping track of its structure?

My objective is to extract the text and images from a PDF file while parsing its structure. The scope for parsing the structure is not exhaustive; I only need to be able to identify headings and paragraphs. I have tried a few of different things, but I did not get very far in any of them: Convert PDF to text. It does not work for me a...

How to get audio data from a MP3?

Hi, 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 we hear). If I'm using a wav file I know I have a 44 bytes header and then the data. When it comes to an mp3, I've read that they are ...

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 { String filename = "C:\\zip\\includes.zip"; testZipFiles list = new testZipFiles( ); list.getZipFiles(f...

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 mode categories: primary, secondary, and miscellaneous There can only be 1 primary game mode selected Certain primary game modes are incompat...

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 "I want this text" without the strong-tag. How can I do that? ...

How to extract data from a PDF?

Hi, 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 from the PDF and insert it into our SQL Server 2008 database? Would this require writing an app or is there an automated way of doing...

How can I extract the values after = in my string with Perl?

I have a string like this field1=1 field2=2 field3=abc I want to ouput this as 2,1,abc Any ideas as to how I can go about this? I can write a small C or Java program to do this, trying I'm trying to find out a simple way to do it in Perl. ...

Temporal Extraction (i.e. Extract date/time entities from free form text) - How?

Has anyone found a simple, but effective way to extract date references from text? I've done a fair amount of searching for temporal extraction tools, but there isn't a lot out there. There are a few white papers, but it seems to fall into a subset of the whole semantic web thingy but not given much attention. I'm just looking for s...

How to extract data from a LONG column holding XML strings

Here is my table MYTABLE(ID NUMBER(10), DATATYPE VARCHAR2(2 BYTE), XMLDATA LONG ) Note1: I cannot alter this table Note2: I'm using Oracle 10g Here is a sample of XMLDATA <myxml version="1"> <node1> <child1>value to get</child1> </node1> </myxml> I tried xmltype() but it's not working with a LONG type (ORA-0...

JavaScript extractor: extract functions/objects that are really used in a web page from a library

This is a twin question to the following: http://stackoverflow.com/questions/1257225/javascript-stripper-remove-functions-objects-that-are-not-used-in-a-web-page To maximize my chance of getting my problem solved, I'm asking the question in opposite manner: All of my web pages use a JavaScript library, to improve the performance of my...