Top "Text-files" questions

Open in Notepad, WordPad, or many other programs designated as text editors.

Reading text values into matlab variables from ASCII files

Consider the following file var1 var2 variable3 1 2 3 11 22 33 I would like to load the numbers into a matrix, and the column …

matlab text file-io text-files text-processing
Response.TransmitFile Not downloading, and throwing no Errors

I'm currently using a HttpResponse to download files from my Server. I already have a couple functions being used to …

c# httpresponse text-files transmitfile response.transmitfile
Is there an easy way to tell which line number a file pointer is on?

In Python 2.5, I am reading a structured text data file (~30 MB in size) using a file pointer: fp = open('myfile.…

python text-files line-numbers
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 …

c# string text store text-files
How do i write a txt file using Microsoft Dynamics AX?

I want to write a txt file (just like i'd do in visual studio with c# using string writer and …

text-files x++ dynamics-ax-2009
String Writer writing into text file

I have 100 textboxes , and i am trying to get all the text from these textboxes to be written into a …

c# text-files stringwriter
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; …

php text-files implode
Embed Text File in a Resource in a native Windows Application

I have a C++ Windows program. I have a text file that has some data. Currently, the text file is …

c++ c winapi resources text-files
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 …

perl vba text-files docx doc
Read txt file with multi-threaded in python

I'm trying to read a file in python (scan it lines and look for terms) and write the results- let …

python multithreading text-files