manipulation

Extracting strings from a xml file and pasting them to a text file

Hi, I am trying to extract data from a xml file, get rid of the xml tags, and store the values in a txt file (tab delimited format) using C. I was able to extract and manipulate the string but I am unable to paste the string to the txt file in a tab delimited format. Instead of getting a txt file that should read like: x.xxxxxxx ...

how to efficiently work out where a file breaks from another earlier version?

I have a file that is constantly added to (a process beyond my control) and I capture that file every x seconds. I want to extract the new contents of the file (added between my previous capture) and work with it. The file unfortunately doesn't have anything to signify when it was last added to and I can't write to this file, so my only ...

How to merge date and time as a datetime in Google Apps Spreadsheet script?

I've a Date column in 'dd/mm/yyyy' format and Time column in 'HH:MM AM/PM' format in Google App spreadsheet. In app script, I want to join these 2 values as a datetime. How can I do this? Example- date : 13/12/2010, time : 4:30 PM Then I want to get a combined value like '13/12/2010 4:30 PM' as a datetime object. I tried to parse date ...

Is there a possibility to manipulate the raw http-stream from within apache tomcat?

An application which consumes my webservice sends an invalid soap-request, my service can not handle this request. The applications send an wrong tag (misspelled), but they cannot alter this behaviour. So my question: Is there a possibility with a filter or a listner to get the raw http stream, alter something and put it back into the...