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.
2
votes
3answers
28 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
41 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
28 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
27 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
1answer
48 views
Also save textfield in text file next to 'vote'
I've got a simple like voting application based on PHP, Ajax and a textfile. It counts how many times is clicked on a <div>. I mixed a few online examples and tuned it for my own purposes
At ...
0
votes
3answers
37 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
52 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
18 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
41 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
36 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
30 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
72 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
30 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
49 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
51 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
35 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
29 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 ...
1
vote
2answers
46 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 ...
1
vote
1answer
46 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 ...
1
vote
0answers
45 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
27 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
43 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
74 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
76 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
34 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
78 views
VBA Copy used range to text file
I want to run a code in VBA that does the following:
Copies the used range of a sheet called "Kommentar"
Creates a ".txt" file ("Kommentar.txt") in the same directory as ThisWorkbook
Pastes the ...
0
votes
2answers
36 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
52 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
17 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
29 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
57 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
37 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
27 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 ...
0
votes
4answers
40 views
In python, how do I search for a number in a text file and print a corresponding value when it's found?
I have a list of cam angles and displacements:
<Ignored header>
0 3
1 3
2 6
3 9
4 12
5 15
6 18
7 21
8 24
9 27
10 30
...
How would I go about searching for an angle and ...
1
vote
3answers
65 views
Deleting some content from the text file in c#
I have text file called Load.txt which contains approximately 200 lines. I have a checkbox, If that is checked then I want to create a new file which had only first 100 lines from the Load.txt. And I ...
1
vote
1answer
53 views
Text file reading Android
Im pretty sure im just asking a silly question but, jut say in have a txt file that has this data on it
UniPub;112 Binara St;ACT
MooseHeads;54 Cohen St;ACT
Cube;24 Mawson St;ACT
Ill read it in my ...
-2
votes
1answer
45 views
Save strings from text file into array c++
My text file is like
Alex Garcia 1000 userid password
Sana Lopez 300 uid pwd
I am trying to save above text file in 2D array
ifstream Records("customerdata.txt");
string dataarray[6][6];
if ...
0
votes
0answers
48 views
c++ read a text file, display similarly
Firstly, please forgive me, my coding knowledge is poor at best.
I've read a number of guides and for the life of me cannot work this out.
I was playing around with code previously featured on this ...
0
votes
3answers
41 views
Load List From Text File To Bash Script
I've a .txt file which contains
abc.com
google.com
....
....
yahoo.com
And I'm interested in loading it to a bash script as a list (i.e. Domain_List=( "abc.com" "google.com" .... "yahoo.com") ). Is ...
-1
votes
3answers
193 views
Why do I get I/O error 32 even though the file isn't open in any other program? [closed]
I'm trying to write a line to a text file in Delphi 7 with the code below, but it gave this error:
"Raised Exception Class EInOutError with 'I/O error 32'"
AssignFile(trackertxt, 'tracker.txt');
...
0
votes
1answer
65 views
Download a file on the client macine using asp.net
I want to download a text file from my website to the users pc without prompting him for the location to save the file.
I have tried it using code below :
Response.TransmitFile("G:\Medical ...
-2
votes
2answers
71 views
Connecting c# application form to text file using app.config file [closed]
I am connecting my c# application form with text file. But I dn't want it to be hard-coded.
So far my code in the file is given below. I dn't want to display the file name and path file. I rather want ...
0
votes
1answer
34 views
Where the “myfilename.txt” in android phone being stored? [duplicate]
I compiled this project in Eclipse.
It is an android app.
I run it in my samsung mobile. But I'm still wondering where the "myfilename.txt" is stored in the android phone.
I explore the internal ...
0
votes
1answer
31 views
How to save a file to a directory
What I have so far:
A block of code that intakes a username and password and write it to a textfile.
String usernameFilename;
usernameFilename = newUsernameField.getText();
char[] ...
0
votes
2answers
64 views
update textfile delimiter java [closed]
I am just starting to learn java and I found an example on how to update a textfile but I need some guidance on how I can manipulate it to update elements in my textfile with delimiters. for example ...
0
votes
1answer
39 views
extract matched line from text file
a:b:c:d:e
bb:cc:dd:ee:ff
ccc:ddd:eee:fff:ggg
I have a textfile content above. I am trying to compare my user input with the text file. For example
cc:dd
When it is found, I need ...
0
votes
1answer
59 views
How do I read a file in Ruby using a specific script?
I am doing a series of tutorials on how to code in Ruby. I want to read a .txt file using this formula:
filename = ARGV.first
prompt = "> "
txt = File.open(filename)
puts "Here's your file: ...
0
votes
1answer
27 views
Output line from file1 if not found in file2
I need to output the lines from file1 that are not found in file2, ideally using linux commandline.
Both files are uppercase A-Z, sorted, per-file unique, and contain only one word per line. ...






