Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

15
votes
8answers
18k views

Java based OCR SDK/API

Are there any good OCR (optical character recognition) SDK or APIs in Java which will be able to convert TIFF files to txt files (or even html is good enough) with some sort of format retention? The ...
6
votes
1answer
1k views

Converting a txt File from ANSI to UTF-8 programaticaly

Hey Everyone , I need your help here please. I'm working on a java application that convert data from a txt file into the database , The problem is that the file have ANSI encoding which i can't ...
5
votes
1answer
166 views

Importing a txt file when number of columns varies?

I have problems importing a .txt file into R because the number columns changes from eight to nine. Initially, my data has eight columns: Date, Open, High, Low, Close, Volume, Open Interest, Delivery ...
5
votes
10answers
6k views

How can I programmatically convert Word doc or docx files into text files?

I need a way to convert .doc or .docx extensions to .txt without installing anything. I also don't want to have to manually open Word to do this obviously. As long as it's running on auto. I was ...
4
votes
1answer
27 views

Creating a RDF file using a txt file as input

How can I convert a simple tab-delimited txt file (containing the headers subject, predicate, object) into a RDF N-triple format using the python module RDFlib?
4
votes
6answers
100 views

sorting lines of an enormous file.txt in java

I'm working with a very big text file (755Mb). I need to sort the lines (about 1890000) and then write them back in another file. I already noticed that discussion that has a starting file really ...
4
votes
1answer
76 views

Read multiple tables in from a single text file?

I have a single .txt file with a number of tables in it. Is there a way to read each of these into its own data frame? Each 'table' is preceded by a line with its title on it, so I can search for ...
4
votes
3answers
745 views

PHP sort text file (.txt) numerically

Thank you for taking the time to read this and I will appreciate every single response no mater the quality of content. :) Using php, I'm trying to create a script which will numerically sort a text ...
4
votes
5answers
4k views

Load .txt file from javascript with jquery [closed]

I want to load a local .txt file and work with the content in javascript. My local file is like C:\Users\Who\Desktop\file.txt Thanks
4
votes
11answers
516 views

TXT File or Database?

What should I use in this case (Apache + PHP)? Database or just a TXT file? My priority #1 is speed. Operations Adding new items Reading items Max. 1 000 records Thank you. Database (MySQL) ...
4
votes
6answers
4k views

How to generate a random named text file in C#?

I have to make a loop to generate a 5 randomly-picked-letter string, and then create a text file under that name, lets say in C:// , how will I do that? Both the generating name and creating a file in ...
4
votes
3answers
792 views

vim: would like it to turn settings on only for certain file types

I've looked at this but it wasn't too much help. Maybe I didn't read it too well. Basically what I want is when I open a .txt file the settings: set wrap set linebreak are turned on. How might I ...
4
votes
3answers
6k views

Converting pdf files to txt files with php

There's this program, pdftotext, that can convert a pdf file to a text file. To use it directly on the linux console: pdftotext file.pdf That will generate a file.txt on the same directory as the ...
3
votes
4answers
103 views

Basic Input/Output C++ Error

All I want is a c++ program that will read in a txt file, put each row in an array, then print a duplicate copy into another txt file. Here's my code... #include <iostream> #include ...
3
votes
3answers
169 views

How to modify specific lines in text file using C#?

I have srt file with movie subtitles like this: 1 00:00:00,082 --> 00:00:04,352 bbb bbb bb bbb bb 2 00:00:08,486 --> 00:00:12,662 bbb bbb bbb 3 00:00:12,824 --> 00:00:14,963 bbb bbbb bb I ...
3
votes
4answers
370 views

Putting a .txt file into a DataGridView

I have an openFileButton that, when clicked, will open a file that looks like this: RefDeg Part# Xcntr Ycntr Rot PkgStyle U6 IC-00279G 33.411 191.494 0 QFP32 U1 ...
3
votes
1answer
152 views

C# - Saving values in Listbox

I have the following code: SaveFileDialog saveGC1File = new SaveFileDialog(); private void GCSavePlacementOneButton_Click(object sender, EventArgs e) { // Initialize the SaveFileDialog to ...
3
votes
3answers
155 views

Converting text dumped in textfile to Csv and Array

i have been using an actionListenerto pass text from numerous TextFields into a text file named writetouser.txtthis works fine though i have noticed that this text is just dumped and is not in the ...
3
votes
3answers
170 views

Keep Strings into .txt file or put them into a Database?

Hey, I have a lot of Strings that I use into my app, the .txt file that I use has ~14000 lines.. and each 3-10 lines are divided into sections like <String="Chapter I"> ... </String> .. ...
3
votes
2answers
186 views

How do I read in lines of a text file when the line breaks are “/r” instead of “/n”?

I have a massive .txt file with a list of tens of thousands of adjectives. In the text files, each word is on its own line. I read it into a list (that I then put into an array using Array.of_list) ...
3
votes
3answers
132 views

Working with huge text files in PHP?

I need to scan through a 30MB text file - it's a list of world cities - How can I access this file, I feel like a File_Get_Contents will give my server a stroke
3
votes
1answer
859 views

How to save data in .txt file in MATLAB

I have 3 txt files s1.txt, s2.txt, s3.txt.Each have the same format and number of data.I want to combine only the second column of each of the 3 files into one file. Before I combine the data, I ...
3
votes
5answers
4k views

Convert a pdf file to text in C#

I need to convert a .pdf file to a .txt file (or .doc, but I prefer .txt). How can I do this in C#?
3
votes
5answers
23k views

Batch / Find And Edit Lines in TXT file

I want to create a batch while which finds specific lines in a batch file and are able to edit these lines. Example: //TXT FILE// ex1 ex2 ex3 ex4 i want to let the batch file find 'ex3' and edit ...
3
votes
7answers
4k views

display contents of .txt file using php

using this code <?php foreach (glob("*.txt") as $filename) { $file = $filename; $contents = file($file); $string = implode($contents); echo $string; echo ...
2
votes
1answer
33 views

tab delimited text file from matlab

The following code generates a similar dataset to what I am currently working with: clear all a = rand(131400,12); DateTime=datestr(datenum('2011-01-01 00:01','yyyy-mm-dd ...
2
votes
4answers
45 views

c# how to put several groups of words from textfile into arrays

i have a textfile containing these kind of words PEOPLE John 0218753458 ENTERPRISE stock 30% HOME Indiana West Virginia PEOPLE Vahn 031245678 ENTERPRISE Inc 50% HOME melbourne Australia i want to ...
2
votes
7answers
81 views

how do i go over lines in an open text file on Python (2.72)

i have a txt files with a few thousands of words in it (one word in a line). iv'e written a function which take two words (strings), and checks if one word is an Anagram of the other (that means if ...
2
votes
2answers
72 views

converting a matrix with headers into a .txt file

If I have a matrix of dimensions [m n] and I need to import the matrix into a tab delimited .txt file i would use: dlmwrite(Filename, Data, 'delimiter', '\t'); However, what do I need to do if i ...
2
votes
5answers
70 views

Create text file to read from every day

What I'm attempting to do is create a simple "Quote of the Day" script. What this needs to do is be able to read from a simple .txt file, grab each entry per line and output the contents of that line, ...
2
votes
3answers
56 views

Could someone point me to an unsorted dictionary?

I am working on some sorting algorithms and need something to practice on. When searching for an unsorted dictionary file, all I get is results for people looking for help. I'm seeking a problem, not ...
2
votes
5answers
156 views

Java: opening a resource (txt file) which is in a jar with OS standard application

i get the error "AWT-EventQueue-0 java.lang.IllegalArgumentException: URI is not hierarchical". -I'm trying to use the java.awt.Desktop api to open a text file with the OS's default application. -The ...
2
votes
1answer
39 views

Text Documents Outlook 2007

I was wondering if there is any way to read informations out from a text file with VBA in Outlook 2007. Thanks for attention
2
votes
2answers
88 views

C# - Problem removing items in List1 & List2 from List3

I have a file that I am reading in, splitting up into different lists and outputting them into RichTextBox to then be read into 3 different Listboxes. I am currently doing all of this, however I have ...
2
votes
2answers
94 views

C# - Sorting Data to/from ListBoxes with Regex

I have a file with data in it that I would like to split up into three different ListBoxes. I want the first ListBox to contain all of the data (a new list item for every line of data read from the ...
2
votes
2answers
340 views

C# - Comparing/Replacing Text Using Two .txt Files

I want to take in a certain format of one text file. After the first file is loaded and reformatted, I want to open a second text file and check if the second file has any text matches with the first ...
2
votes
5answers
346 views

C# store a string variable to a text file .txt

How can i store the contents of a string variable to a text file ? How can i search in a string variable for specific text for example find if the word book is in the string?
2
votes
3answers
293 views

fscanf() only picking up first line of file

I have a tab delimited file that I am trying to convert to a tab delimited file. I am using C. I am getting stuck on trying to read the second line of the file. Now I just have an tens of thousand of ...
2
votes
1answer
105 views

R: how to get information from a txt file with R

R experts, I have a large text file, which has specific pattern and format. My text.txt contains x1 `xx`nkkna`yy`taktnaknvcaklrhkahnktn, altlkhakthakd`xx`nmm cataitha`yy`knkcnaktnhakt x2 ...
2
votes
2answers
205 views

How do i write to a text file using java?

I have been using the "Learning Java 2nd Edtion" book to try make my java application write my input to a text file called properties. I have manipulated the text book example into my own code but ...
2
votes
3answers
179 views

converting Xml to txt

I am currently working with an XML file that keeps race information in XML format like so <Row xmlns="Practice2a"> <RecordType>Qualifying Classification</RecordType> ...
2
votes
2answers
204 views

From clipboard to file

I want to get data from the clipboard and store it in a .txt file. How do I create the .txt file? I have read a lot about getting data from a file but not the other way around. Here is my code: ...
2
votes
4answers
120 views

post the last 25 lines of a .txt file to a website?

I've got a form uploading input lines of text to a .txt file and would like to display the last 25 lines of the text file on the page with the text entry form (I'd also like to give each line a random ...
2
votes
3answers
98 views

problem with python list

Hi im trying to create a list adding to it via a for loop reading line by line from a txt file. Im getting a syntax error on the list but am unsure about how to fix the problem ??? import re file = ...
2
votes
3answers
93 views

list contents with batch

I need a bat file that will list the entire contents of a folder Including its subfolders in a text file. one of our programs seams to constantly be missing or adding files. a list would help me ...
2
votes
5answers
282 views

batch file find to parse out keywords

I have a list of words stored in a text file called blacklist.txt I want to go through output from another program and take out all the lines that contain any of these words. if i do this: for /f ...
2
votes
4answers
164 views

editing a single .txt line in python 3.1

i have some data stored in a .txt file in this format: ----------|||||||||||||||||||||||||-----------||||||||||| 1029450386abcdefghijklmnopqrstuvwxy0293847719184756301943 ...
2
votes
1answer
347 views

How do I overwrite text vb.net

I once got taught how to append a text file ussing the following code but now i want to overwrite the file every time i press button one (nobodys taught me that) Private Sub Button1_Click(ByVal ...
2
votes
2answers
164 views

Need help in reading .txt file which contains a table with blanks?

Consider this - "ID_REF" "GSM887" "GSM888" "GSM889" "GSM890" "GSM891" 10              ...
2
votes
2answers
128 views

Problem with Regex

I have a perl file that takes in txt files and compares them to other words in another txt file if they match then the file gets moved to another folder I'm currently getting this error: Unmatched ( ...

1 2 3 4 5 7