The TXT file type is primarily associated with 'Text File'. Open in Notepad, WordPad, or many other programs designated as text editors. A true text file will be pure ASCII text with no formatting.

learn more… | top users | synonyms (3)

0
votes
0answers
30 views

Cannot deal with the text files' names and lengths which are stored in a structure

I wrote a code to get the text file names in a directory, get the length of the articles which are number of words in article, and the two steps seem to work well, and the outputs are what I wanted. ...
0
votes
1answer
20 views

Why isn't my addToList method working right?

I'm new here and this is my first question: Here is my code: #include<stdio.h> #include<stdlib.h> #include<string.h> struct Person{ char *vorname; char *nachname; ...
-1
votes
1answer
31 views

Check for items visited in text file

I have a code that reads items in a text file. It reads them line-by-line. When an item is read it will be added to a list that prevents it from revisited again. When the list is full (max size), it ...
0
votes
3answers
29 views

.txt file to .xlsx file (600 rows and 40 columns)

I have a program that combines three text files and put them all into one and sorts them all out alphabetically. I was wondering how I could possibly put this onto an excel spreadsheet without ...
0
votes
2answers
18 views

Delete specific characters in text-file php

I have a text like that : # GEMEL Eclipse: ,frank,jean accueil: ,eclipse,alex accueil: eclipse,truc I want to delete the , in front of frank or eclipse, it can be any word. ...
1
vote
1answer
47 views

Why does a one line txt file take longer to open?

I have downloaded a book from project gutenberg that is about 3 mbs in size and I am annoyed with all line breaks and whitespace in the file so I used the following code on the content string of the ...
-1
votes
3answers
34 views

Reading small parts of a text file into a text field in GUI

Im going to write a hotel reservation program for my final year at school. I am going to use a text file to have all the guests whose attributes include: Name, Surname, contact details etc. and I want ...
0
votes
1answer
30 views

Error: File it is being used by another process, even if closed and disposed

I'm having problems to access a file. Every 1 second (more or less) my application is calling this procedure to download a sourcecodepage and save it in a textfile, the problem is sometimes when is ...
-5
votes
1answer
52 views

Merging a text file in sorting algorithm [closed]

I'm trying to sort a list of numbers taken frm a .txt file and sort it using selection sort (java) ..I have created my codes for selection sort and I have codes to import text file..bt I have problem ...
-7
votes
1answer
47 views

Delete the lines of text file 777777 [closed]

Looking for an easy way to delete the last two lines of a text file; can I do this without changing the PrintStream object?
1
vote
1answer
51 views

SOLVED: Excel VBA - reading data from text file and delimiting

I have an Excel 2010 spreadsheet, and I am reading in information from a .txt file (and another .xls file in future). This text file has 3 elements per row; firtname, surname and Job title, and each ...
0
votes
2answers
35 views

Text file is processed using Hashmap containing List(of maps) as values-How to process?

My text file contains datas like... dept->studentId-StudentData(name and email).. IT-> 1->john->john@ymail.com CSE->2->Santosh->s@gmail.com IT->3->Mike->mike@ymail.com First,I have stored the ...
2
votes
1answer
29 views

Selecting file to be edited

i have an application that is used to edit .txt files. the application is made up of 3 parts Displays contents of a folder with the files to be edited(each file is a link when clicked it opens on ...
-1
votes
4answers
70 views

How to discard lines in text file until certain string is found

The file begins with about 200 lines of background information that i don't need. Im trying to skip/ignore those 200 lines until a string is found. Once this string is found I want to be able to ...
0
votes
3answers
30 views

Resize TextFile (Keep X amount of first lines and delete the rest of lines)

I'm trying to delete all the lines after "X" number of line in a textfile, I mean to keep the first "X" amount of lines and delete the rest of lines. I know how to do this by this way: 1. Open the ...
-3
votes
0answers
11 views

Read/Write files to Internal Storage

I want to store (write/read) some text files in internally. But if my app uninstall manually my internal files also removed. So please help me for solve this issue.
1
vote
1answer
32 views

Batch file parsing text file from UNIX

I'm attempting to write a batch file that backs up files from my Android phone to my computer. Part of this process is having my phone generate a file list as a text file using the android debug ...
2
votes
2answers
53 views

Extract text between HTML tags

I have many HTML files from which I need to extract text. If it's all on one line, I can do that quite easily but if the tag wraps around or is on multiple lines I can't figure how to do this. Here's ...
0
votes
1answer
45 views

Writing big strings to a text file?

I have strings which look like this - String text = "item1, item2, item3, item4 etc..." I made java code to write these strings to a text file which will be converted to csv by simply changing the ...
0
votes
1answer
52 views

How do I write to a text file

I have my method all ready but it just doesn't write the duplicates to my text file as its meant to do, it prints out to screen but not to the file? // Open the file. File file = new ...
1
vote
2answers
31 views

python 3.0 readline() random jump

I am reading a txt file line by line using python 3 built-in readline() function. This file contains employees information in blocks and it looks like this: First name Jack \n Last name Garcia ...
0
votes
0answers
33 views

Delphi write to textfile crashing intermittently

I have a program doing massive amounts of calculations in very long loops on a separate thread. To step though this code is going to take forever. For instance in my current problem I am interested in ...
0
votes
3answers
46 views

StreamReader Multiple lines

I am trying to figure out how to read multiple lines whith StreamReader. I have a text file with a list of commands inside it that I need to read from. My code works, however it will only read the ...
0
votes
0answers
8 views

Line number with ODBC to Text File driver

I am doing a select from a text file using the ODBC to Text File driver. I am able to do the select but I wonder if there is a way that I can get the Line number from the select. I expect something ...
0
votes
3answers
58 views

How to populate array from .TXT file without put any duplicates in the array?

Basicaly need to scan this text file put it in to an array but i cant put any duplicates so it has to check the array and see if the array already contain that number, i cant use array list to do ...
1
vote
1answer
26 views

fgets(STDIN) automatic line break?

I noticed something with fgets(STDIN) in php I have this code : if($fd = fopen($filename, "a")){ $message = fgets(STDIN); $message = $message.":"; echo $message; //fwrite($fd, ...
1
vote
4answers
46 views

Opening text files from a list within another text file using python

I'm probably doing something very silly and basic, but I just can't get this bit of code to work. I have a text file that contains a list of more text files (log files) with the full path for them. I ...
-1
votes
2answers
37 views

Read different values in a txt file [closed]

How to read different values in a txt file in Java? I know how to read a file for String and int values but I can't seem to get them to work at once. I tried using split, and tokenizer but I don't ...
1
vote
1answer
33 views

MatLab - Automated plotting of differently sized segments of a text file

I have a text file with two columns containing space-delimited numeric data. The data are divided into segments, where each of them contains a variable number of rows and the beginning of the next ...
0
votes
3answers
86 views

Convert Text file to XML file

I want to parse teh content of the text file which is in the below format example of text file data key1:value1 key2:value2 key3:value3 Now I want the above content to be parsed with the ...
1
vote
4answers
32 views

read a file from a specific line php

I try to read some specific lines in text file. My text file is like that : # # Aliases in this file will NOT be expanded in the header from # Mail, but WILL be visible over networks or from ...
0
votes
2answers
56 views

Avoid non printable character in html file written by Python

I'm trying to convert SPSS syntax files to readable HTML. It's working almost perfectly except that a (single) non printable character is inserted into the HTML file. It doesn't seem to have an ASCII ...
0
votes
1answer
55 views

I want to read the values for the pixels from a text file and then create an image file with the defined pixels.

I'm new to c#, and I need to read the values for the pixels from a text file and then create an image file with the defined pixels. I found this code, but not sure how to use it:( Please help! I ...
1
vote
1answer
38 views

Delete text form textfile with php

I try to delete some texte in a text file. The texte file is like that : #MESSAGE :0 * ^(To|cc).*fd.* |/usr/bin/vacation fd #monfiltreperso :0 * ^From.*martial@gironde.com Maildir/.repertorymoi :0 ...
1
vote
1answer
31 views

fread() fails after reading complete contents of text file

I have written this code which reads contents of text file into a buffer and sends the buffer over the socket until end of file. The code works fine and after complete file is sent to over the ...
0
votes
2answers
56 views

Read a text file line by line and save each line in the buffer irrespective of data type and length of each line

I want to read one line of the text file, save it to a buffer, send the buffer over a udp socket and then go and read the second line and so on.. So far, since I knew the data type of the text to be ...
0
votes
1answer
51 views

fopen() opens the text file successfully for sometime and fails after a specific time

I am trying to send a text file at a socket after every 10ms. The code works fine and keeps on sending the text file over the socket after an interval of 10ms. But after some period of time (like ...
0
votes
0answers
68 views

“Debug Assertion Failed. Expression: (_osfile(fh) & fopen)” error and Fatal Error in visual studio 2008

My following code is compiled successfully and runs perfectly for sometime handling 40 clients but after sometime, it gives an error "Debug Assertiion Failed expression: (_osfile(fh) & fopen)". I ...
0
votes
2answers
37 views

PHP - Write text file content in another text file

I want to check if the content of a text file is the same as another, and if it isn't, write one into the other. My code is as follows: <?php $file = "http://example.com/Song.txt"; $f = ...
2
votes
1answer
48 views

Inserting text between certain lines in a batch file using Python

I want to insert around 4000 lines of text from one text file to another but the list of text must be inserted between the current lines leaving empty line above and below it. e.g. output.txt old ...
0
votes
1answer
78 views

Unable to copy multiline text file to a buffer

I am trying to copy a text file to a buffer in order to send it over the socket. As soon as the text file does not have any newlines (or \n), the file is successfully copied into buffer. But, ...
0
votes
3answers
87 views

linux command to get the last appearance of a string in a text file

I want to find the last appearance of a string in a text file with linux commands. For example 1 a 1 2 a 2 3 a 3 1 b 1 2 b 2 3 b 3 1 c 1 2 c 2 3 c 3 In such a text file, i want to find the line ...
1
vote
0answers
50 views

Creating a table in SQL database by reading textfile in java?

folks, i am trying to read textfile and create table in SQL SERVER Database, but i am getting error null while doing it, so should i use diffrent type of sql statement to execute ? or is the problem ...
0
votes
2answers
40 views

List all folder names in a text file

Im writing a batch to go through the current directory and list all the folder names in a text file. what i have so far only lists file names. can somebody show me what im doing wrong? @echo ON ...
0
votes
1answer
68 views

PHP error handling with .htaccess & writing into php_error.log text file

For PHP error handling with the aim of "only admin sees the warnings, errors etc."; I applied the steps below: I deleted error_reporting(-1); command from my index.php I added rows below into my ...
0
votes
0answers
21 views

How do I load data into Win Bugs from Excel or from Notepad (doc ending with .txt)?

I need to load some data into WinBugs from Excel and for some reason, Winbugs doesn't recognize it. There are many things I have tried (all of which are listed below) and none of these work. I ...
0
votes
0answers
30 views

update and save data to a .txt file daily

I'm trying to create something similar to a journal of my daily fluid intake, food, exercise, etc. I have created a few menus do ask user for specific input that is pre-defined in the menus. From ...
0
votes
3answers
69 views

How to keep variable constant even after page refresh in PHP

I'm making a simple hangman application and I have my php file and a separate .txt file holding the words, one on each line. What I want is for the $word variable to remain constant even after the ...
0
votes
1answer
41 views

How to make a Checkbutton/box change a text file on-click? (Using Python and tkinter library) [closed]

So, I decided to make this project of building a program so I could have a record of my books, which of them I borrowed, which I've read, etc. For the "database" I'm using .txt files, which contain ...
0
votes
1answer
29 views

i need to read specified line from text file in adroid

Hi i need to read line number 3 from text file for example i have written this code but, its read first line public void GetFrom_Text(){ String []message=null; BufferedReader br=null; String ...

1 2 3 4 5 34