active questions tagged textfiles - Stack Overflowmost recent 30 from stackoverflow.com2009-11-28T03:14:10Zhttp://stackoverflow.com/feeds/tag/textfileshttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/536148/c-string-parsing-python-style5C++ string parsing (python style)hasen j2009-02-11T09:49:23Z2009-11-27T21:49:23Z
<p>I love how in python I can do something like:</p>
<pre><code>points = []
for line in open("data.txt"):
a,b,c = map(float, line.split(','))
points += [(a,b,c)]
</code></pre>
<p>Basically it's reading a list of lines where each one represents a point in 3D space, the point is represented as three numbers separated by commas</p>
<p>How can this be done in C++ without too much headache?</p>
<p>Performance is not very important, this parsing only happens one time, so simplicity is more important.</p>
<p>P.S. I know it sounds like a newbie question, but believe me I've written a lexer in D (pretty much like C++) which involves reading some text char by char and recognizing tokens,<br />
it's just that, coming back to C++ after a long period of python, just makes me not wanna waste my time on such things.</p>
http://stackoverflow.com/questions/1802757/remove-first-line-in-text-file-without-allocating-memory-for-entire-text-file1Remove first line in text file without allocating memory for entire text fileMatt2009-11-26T10:05:21Z2009-11-26T10:55:29Z
<p>Hey all,</p>
<p>I have a very large text file and all I need to do is remove one single line from the top of the file. Ideally, it would be done in PHP, but any unix command would work fine. I'm thinking I can just stream through the beginning of the file till I reach \n, but I'm not sure how I do that.</p>
<p>Thanks,
Matt Mueller</p>
http://stackoverflow.com/questions/1458213/read-a-txt-file-containing-a-matrix-of-numbers-separated-by-spaces-and-lines-into0Read a txt file containing a matrix of numbers separated by spaces and lines into an arrayGuillermo2009-09-22T05:15:09Z2009-11-19T21:00:05Z
<p>I've been trying to read a txt file containing a formatted matrix (9x9) into an int array. The txt file is selected by the user using NSOpenPanel. </p>
<p>An example txt file:</p>
<p>2 7 9 1 6 2 1 1 1<br />
9 1 3 3 4 0 6 8 5<br />
5 3 2 9 3 8 6 7 0<br />
6 0 9 2 5 6 4 8 0<br />
3 2 0 4 0 5 0 6 0<br />
4 0 5 4 0 3 9 0 0<br />
6 4 1 3 2 5 7 2 0<br />
6 5 7 2 1 3 0 9 3<br />
1 0 2 7 5 1 0 0 0 </p>
<p>I'm really new to mac programming so any help would be greatly appreciated.</p>
http://stackoverflow.com/questions/291740/how-do-i-split-a-huge-text-file-in-python5How do I split a huge text file in pythonquamrana2008-11-14T23:12:14Z2009-11-18T10:49:04Z
<p>I have a huge text file (~1GB) and sadly the text editor I use won't read such a large file. However, if I can just split it into two or three parts I'll be fine, so, as an exercise I wanted to write a program in python to do it. </p>
<p>What I think I want the program to do is to find the size of a file, divide that number into parts, and for each part, read up to that point in chunks, writing to a <em>filename</em>.nnn output file, then read up-to the next line-break and write that, then close the output file, etc. Obviously the last output file just copies to the end of the input file.</p>
<p>Can you help me with the key filesystem related parts: filesize, reading and writing in chunks and reading to a line-break?</p>
<p>I'll be writing this code test-first, so there's no need to give me a complete answer, unless its a one-liner ;-)</p>
http://stackoverflow.com/questions/1720240/how-to-write-trace-output-to-a-text-file-without-a-web-server-in-as31How to write trace output to a text file without a web server in AS3martin2009-11-12T06:09:29Z2009-11-12T10:20:37Z
<p>I have an application that writes traces with a timestamp when certain items are clicked or accessed. I need to write these to a text log file so that they can be accessed remotely.. The device the app runs on doesn't have a web server and doesn't run the flash debug player, os is xp. How can I send these traces to a text file? I noticed <a href="http://arthropod.stopp.se/" rel="nofollow">Arthropod</a> writes to an html file, but I need to do this automatically without interaction.. any suggestions? </p>
http://stackoverflow.com/questions/1698188/selective-merge-of-two-or-more-data-files0Selective merge of two or more data filesArrieta2009-11-08T22:42:36Z2009-11-08T23:21:08Z
<p>Dear Overflowns:</p>
<p>I have an executable whose input is contained in an ASCII file with format:</p>
<pre><code>$ GENERAL INPUTS
$ PARAM1 = 123.456
PARAM2=456,789,101112
PARAM3(1)=123,456,789
PARAM4 =
1234,5678,91011E2
PARAM5(1,2)='STRING','STRING2'
$ NEW INSTANCE
NEW(1)=.TRUE.
PAR1=123
[More data here]
$ NEW INSTANCE
NEW(2)=.TRUE.
[etcetera]
</code></pre>
<p>In other words, some general inputs, and some parameter values for a number of new instances. The declaration of parameters is irregular; some numbers are separated by commas, others are in scientific notation, others are inside quotes, the spacing is not constant, etc. </p>
<p>The evaluation of some scenarios requires that I take the input of one "master" data file and copy the parameter data of, say, instances 2 through 6 to another data file which may already contain data for said instances (in which case data should be overwritten) and possibly others (data which should be left unchanged).</p>
<p>I have written a Flex lexer and a Bison parser; together they can eat a data file and store the parameters in memory. If I use them to open both files (master and "scenario"), it should not be too hard to selectively write to a third, new file the desired parameters (as in <code>"general input from 'scenario'; instances 1 though 5 from 'master'; instances 6 through 9 from 'scenario'; ..."</code>), save it, and delete the original scenario file.</p>
<p>Other information: (1) the files are highly sensitive, it is very important that the user is completely shielded from altering the master file; (2) the files are of manageable size (from 500K to 10M).</p>
<p>I have learned that what I can do in ten lines of code, some fellow here can do in two. How would you approach this problem? A Pythonic answer would make me cry. Seriously.</p>
http://stackoverflow.com/questions/1625234/how-to-append-text-to-an-existing-file-in-java3How to append text to an existing file in Javaflyingfromchina2009-10-26T14:43:50Z2009-11-06T15:50:46Z
<p>I need to append text repeatedly to an existing file in Java. How do I do that?</p>
http://stackoverflow.com/questions/1672184/php-and-regex-to-find-files-in-directories-and-then-run-regex0PHP and regex to find files in directories and then run regexmika2009-11-04T07:24:36Z2009-11-05T08:51:21Z
<p>hi,
what's the the most efficient way to find text files in different directories and then run regex to those found files. I will run php/scripts locally.</p>
<p>Let's say I have D:\Script\ where i want to run my script from and D:\Script\folder_01, D:\Script\folder_02, etc. where i want that script to look the files from. Those folder names aren't logical, they could be anything.</p>
<p>So, i don't want to find every files but only the files that contains the line: "Game type: xxxxx". (matching number of text files would be around 150-200)</p>
<p>And after finding those files, I'd like to run some preg_replace one file at a time.</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/1674481/how-to-configure-gnu-emacs-to-write-unix-or-dos-formatted-files-by-default1How to configure GNU Emacs to write UNIX or DOS formatted files by default?Greg Mattes2009-11-04T15:20:36Z2009-11-04T15:27:39Z
<p>I've had these functions in my <code>.emacs.el</code> file for years:</p>
<pre><code>(defun dos2unix ()
"Convert a DOS formatted text buffer to UNIX format"
(interactive)
(set-buffer-file-coding-system 'undecided-unix nil))
(defun unix2dos ()
"Convert a UNIX formatted text buffer to DOS format"
(interactive)
(set-buffer-file-coding-system 'undecided-dos nil))
</code></pre>
<p>These functions allow me to easily switch between formats, but I'm not sure how to configure Emacs to write in one particular format by default regardless of which platform I'm using. As it is now, when I run on Windows, Emacs saves in Windows format; when I run in UNIX/Linux, Emacs saves in UNIX format.</p>
<p><strong>I'd like to instruct Emacs to write in UNIX format regardless of the platform on which I'm running.</strong> How do I do this?</p>
<p>Should I perhaps add some text mode hook that calls one of these functions? For example, if I'm on Windows, then call <code>dos2unix</code> when I find a text file?</p>
http://stackoverflow.com/questions/1648055/preserving-leading-white-space-while-readingwriting-a-file-line-by-line-in-bash0Preserving leading white space while reading>>writing a file line by line in bashJoel Hooks2009-10-30T04:49:55Z2009-10-30T22:45:10Z
<p>I am trying to loop through a directory of text files and combine them into one document. This works great, but the text files contain code snippets, and all of my formatting is getting collapsed to the left. All leading whitespace on a line is stripped.</p>
<pre><code>#!/bin/sh
OUTPUT="../best_practices.textile"
FILES="../best-practices/*.textile"
for f in "$FILES"
do
echo "Processing $f file..."
echo "">$OUTPUT
cat $f | while read line; do
echo "$line">>$OUTPUT
done
echo >>$OUTPUT
echo >>$OUTPUT
done
</code></pre>
<p>I am admittedly a bash noob, but after searching high and low I couldn't find a proper solution. Apparently BASH hates the leading white space in general.</p>
http://stackoverflow.com/questions/1638960/matlab-how-do-you-insert-a-line-of-text-at-the-beginning-of-a-file3MATLAB: How do you insert a line of text at the beginning of a file?temp22902009-10-28T17:56:32Z2009-10-28T20:11:49Z
<p>I have a file full of ascii data. How would I append a string to the first line of the file? I cannot find that sort of functionality using fopen (it seems to only append at the end and nothing else.)</p>
http://stackoverflow.com/questions/1625299/processing-huge-text-files3Processing huge text filesVadi2009-10-26T14:54:02Z2009-10-27T14:30:02Z
<p><strong>Problem:</strong>
I've a huge raw text file (assume of 3gig), I need to go through each word in the file
and find out that a word appears how many times in the file.</p>
<p><strong>My Proposed Solution:</strong>
Split the huge file into multiple files and each splitted file will have words in a sorted manner. For example,
all the words starting with "<em>a</em>" will be stored in a "*<em>a.dic</em>" file. So, at any time we will not execeed more than 26 files.</p>
<p>The problem in this approach is,</p>
<p>I can use streams to read the file, but wanted to use threads to read certain parts of the file. For example, read 0-1024 bytes with a separate thread (atleast have 4-8 threads based on the no. of processors exist in the box). Is this is possible or am I dreaming?</p>
<p>Any better approach?</p>
<p>Note: It should be a pure c++ or c based solution. No databases etc., are allowed.</p>
http://stackoverflow.com/questions/440061/convert-12-hour-date-time-to-24-hour-date-time1Convert 12-hour date/time to 24-hour date/timePatrick Cuff2009-01-13T17:59:28Z2009-10-23T05:36:43Z
<p>I have a tab delimited file where each record has a timestamp field in 12-hour format:</p>
<blockquote>
<p>mm/dd/yyyy hh:mm:ss [AM|PM].</p>
</blockquote>
<p>I need to quickly convert these fields to 24-hour time:</p>
<blockquote>
<p>mm/dd/yyyy HH:mm:ss.</p>
</blockquote>
<p>What would be the best way to do this? I'm running on a Windows platform, but I have access to sed, awk, perl, python, and tcl in addition to the usual Windows tools.</p>
http://stackoverflow.com/questions/1600012/shuffle-text-file-delphi-source-or-anything-else2Shuffle Text File Delphi Source or anything elseHein du Plessis2009-10-21T10:39:59Z2009-10-21T19:28:16Z
<p>Hi</p>
<p>I have a stringlist with 10 000 entires. I have a shuffle routine, but accessing any of the items is taking a lot of time. Going thtought all 10k items takes a huge amount of time.</p>
<p>I want to save it do disk and then do a shuffle on the file using another method.</p>
<p>Any suggestions?</p>
<p>Any source code welcome, Delphi preferable.</p>
<p>Thanks</p>
http://stackoverflow.com/questions/273307/i-need-a-quick-and-dirty-way-to-append-to-a-text-file-in-vb-net3I need a quick and dirty way to append to a text file in vb.netElectrons_Ahoy2008-11-07T19:27:28Z2009-10-20T18:20:37Z
<p>I've got a very small standalone vb.net app that gets run automatically. Every now and then it hits an error condition that I want to log and then keep processing. But, this is far too minor a thing to store in the system's main log - I really just want to append a line to a text file.</p>
<p>What's the least stress way to append a line of text to a file (and have it create the file if it's not there) under .net?</p>
http://stackoverflow.com/questions/1545345/are-there-any-tricks-for-counting-the-number-of-lines-in-a-text-file8Are there any tricks for counting the number of lines in a text file?frou2009-10-09T18:25:23Z2009-10-14T10:58:03Z
<p>Say you have a text file - what's the fastest and/or most memory efficient way to determine the number of lines of text in that file?</p>
<p>Is it simply a matter of scanning through it character by character and looking for newline characters?</p>
http://stackoverflow.com/questions/1245243/delete-specific-line-from-a-text-file3Delete specific line from a text file?Goober2009-08-07T14:57:05Z2009-10-14T04:48:32Z
<p>I need to delete an exact line from a text file but I cannot for the life of me workout how to go about doing this.</p>
<p>Any suggestions or examples would be greatly appreciated?</p>
<p><strong>Related Questions</strong></p>
<p><a href="http://stackoverflow.com/questions/532217/efficient-way-to-delete-a-line-from-a-text-file-c">Efficient way to delete a line from a text file (C#)</a></p>
http://stackoverflow.com/questions/1540540/searching-through-a-textfile-cocoa1Searching Through a TextFile - CocoaKevin2009-10-08T21:16:15Z2009-10-12T10:32:38Z
<p>How would I type up a code that searches through a text file from a given directory. I want the search word to be "password123" and if it contains that, then it will proceed onto the next step, if not it will give an error message. </p>
http://stackoverflow.com/questions/1519328/j2me-blackberry-how-to-read-write-text-file1J2ME/Blackberry - how to read/write text file?siva naresh2009-10-05T10:38:41Z2009-10-05T18:54:01Z
<p>hi,
please give me a sample code for read/write text file in blackberry application.</p>
http://stackoverflow.com/questions/1456882/how-to-print-an-array-to-a-txt-file-in-matlab1How to print an array to a .txt file in Matlab?eSKay2009-09-21T21:09:42Z2009-10-04T15:57:38Z
<p>I am just beginning to learn <strong>Matlab</strong>, so this question might be very basic:</p>
<p>I have a variable</p>
<pre><code>a=[2.3 3.422 -6.121 9 4.55]
</code></pre>
<p>I want the values to be output to a .txt file like this:</p>
<pre><code>2.3
3.422
-6.121
9
4.55
</code></pre>
<p>How can I do this?</p>
<pre><code>fid = fopen('c:\\coeffs.txt','w'); //this opens the file
//now how to print 'a' to the file??
</code></pre>
http://stackoverflow.com/questions/1513861/bash-format-a-textfile-pair-every-two-lines2Bash - Format a Textfile - Pair every two linesPeter Parker2009-10-03T14:24:41Z2009-10-03T19:20:53Z
<p>Hi,</p>
<p>With a simple bash script i generate a text file with many entrys like this:</p>
<pre><code>192.168.1.1
hostname1
192.168.1.2
hostname2
192.168.1.3
hostname3
</code></pre>
<p>Now i want to reformat this file, that it looks like this:</p>
<pre><code>192.168.1.1 hostname1
192.168.1.2 hostname2
192.168.1.3 hostname3
</code></pre>
<p>Some ideas to solve this? Sed maybe?</p>
<p>Thanks for help and best regards. :)</p>
http://stackoverflow.com/questions/1492268/reading-data-into-matlab-from-a-textfile3Reading data into MATLAB from a textfile...Fifth-Edition2009-09-29T12:33:06Z2009-10-02T04:34:29Z
<p>I have a textfile with the following structure:</p>
<pre><code>1999-01-04
1,100.00
1,060.00
1,092.50
0
6,225
1,336,605
37
1999-01-05
1,122.50
1,087.50
1,122.50
0
3,250
712,175
14
...
</code></pre>
<p>The file contains repeated sets of eight values (a date followed by seven numbers, each on their own line).</p>
<p>I want to read it into MATLAB and get the values into different vectors. I've tried to accomplish this with several different methods, but none have worked - all output some sort of error. </p>
<p>In case it's important, I'm doing this on a Mac.</p>
http://stackoverflow.com/questions/1489533/process-large-textfiles-quickly-w-vba0Process Large Textfiles Quickly w/ VBAFink2009-09-28T21:43:51Z2009-09-29T02:37:12Z
<p>Hey Everyone,</p>
<p>I'm having a hardtime speeding up the processing of a very large textfile (~100 Meg or so). I've made caution to be very diligent using the redim preserve calls, and yet the function still takes 5 minutes or so to run. The textfile is basically sub reports which i'm trying to parse out. I only have access to the large file. What is a person to do. Is VBA just that slow? Here is the code, the "Report" object is a class I created. Most of the reports are just a couple hundred lines, so thats why I choose 1000 for the ubound:</p>
<pre><code>Public Function GetPages(originalFilePath As String) As Collection
Dim myReport As report
Dim reportPageCollection As Collection
Dim startLine As Long
Dim endLine As Long
Dim fso As FileSystemObject
Dim file As textStream
Dim lineStr As String
Dim index As Long
Dim lines() As String
Set fso = New FileSystemObject
Set reportPageCollection = New Collection 'initialize the collection
Set file = fso.OpenTextFile(originalFilePath, ForReading)
ReDim lines(0 To 1000)
lineStr = file.ReadLine 'skip the first line so the loop doesnt add a blank report
lines(0) = lineStr
index = 1
Do Until file.AtEndOfLine 'loop through from the startline to find the end line
lineStr = file.ReadLine
If lineStr Like "1JOBNAME:*" Then 'next report, so we want to return an array of the single line
'load this page into our report page collection for further processing
Set myReport = New report
myReport.setDataLines = lines() 'Fill in 'ReportPage' Array
reportPageCollection.Add myReport 'add our report to the collection
'set up array for new report
ReDim lines(0 To 1000)
index = 0
lines(index) = lineStr
index = index + 1
Else
'============================ store into array
If index = UBound(lines) Then
ReDim Preserve lines(0 To UBound(lines) + 1000)
lines(index) = lineStr
index = index + 1
Else
lines(index) = lineStr
index = index + 1
End If
'============================
End If
Loop
file.Close
Set fso = Nothing
Set GetPages = reportPageCollection
</code></pre>
<p>End Function</p>
<p>Any Help is appreciated. Thanks!</p>
http://stackoverflow.com/questions/1437806/whats-faster-than-notepad-for-viewing-large-text-files3What's faster than notepad for viewing large text files? [closed]frou2009-09-17T09:56:36Z2009-09-17T10:22:01Z
<p>When I want to view a large log file or other text file, opening it in Windows' <code>notepad</code> takes forever, yet I find myself doing it all the time.</p>
<p>Is there a better (faster at opening, scrolling) application for viewing large text files on Windows?</p>
http://stackoverflow.com/questions/60034/how-can-you-find-and-replace-text-in-a-file-using-the-windows-command-line-enviro7How can you find and replace text in a file using the Windows command-line environment?Ray Vega2008-09-12T21:48:26Z2009-09-15T18:22:55Z
<p>I am writing a batch file script using Windows command-line environment and want to change each occurrence of some text in a file (ex. "FOO") with another (ex. "BAR"). What is the simplest way to do that? Any built in functions?</p>
http://stackoverflow.com/questions/1389740/whats-a-reasonable-maximum-size-that-a-cross-platform-application-should-allow-a1What's a reasonable maximum size that a cross-platform application should allow a text file to get?Jason Baker2009-09-07T14:50:04Z2009-09-07T17:49:58Z
<p>What's a reasonable maximum size that a cross-platform application could allow a text file to get? I understand that this is an oversimplified question so allow me to explain.</p>
<p>My team is implementing a bulk load interface for clients to load data into our database. It will write out a CSV file and then load that file into the appropriate database (at this point either Oracle or SQL Server). We could be dealing with a relatively high number of records.</p>
<p>Is there any limit I should put on the size of these text files before I start breaking it up into multiple text files? Currently, we're deploying to Linux and Windows, but we also have developers using OS X. Plus, some of our clients have somewhat dated versions of these operating systems. I'd imagine that this is dependent upon the OS, file system, and RDBMS that we're connecting to. Rather than trying to set a limit for each individual platform, I'd like to just have one overall limit for simplicity's sake (as long as that limit isn't overly restrictive). Is this even necessary, or is there a cap I can set across the board?</p>
http://stackoverflow.com/questions/1389155/easiest-way-to-read-text-file-which-is-locked-by-another-application0Easiest way to read text file which is locked by another applicationBenjol2009-09-07T12:22:47Z2009-09-07T13:47:42Z
<p>I've been using File.ReadAllText to grab some csv, but every time I forget to close the file in Excel, the application throws an exception because it can't get access to the file.</p>
<p>(Seems crazy to me, I mean the READ in ReadAllText seems pretty clear)</p>
<p>I know that there is File.Open with all the bells and whistles, but is there an 'intermediate' method which doesn't involve messing around with buffers and char arrays?</p>
<p><em>Yes, I'm lazy, so vote me down, just give me the answer first :)</em></p>
http://stackoverflow.com/questions/1371409/parsing-large-text-files-with-adobe-air0Parsing large text files with Adobe AIRmarauder2009-09-03T04:16:23Z2009-09-03T18:21:57Z
<p>Hello,</p>
<p>I am trying to do the following in AIR:</p>
<ol>
<li>browse to a text file</li>
<li>read the text file and store it in a string (ultimately in an array)</li>
<li>split the string by the delimiter \n and put the resulting strings in an array</li>
<li>manipulate that data before sending it to a website (mysql database)</li>
</ol>
<p>The text files I am dealing with will be anywhere from 100-500mb in size. So far, I've been able to to complete steps 1 and 2, here is my code:</p>
<pre><code><mx:Script>
<![CDATA[
import mx.collections.ArrayCollection;
import flash.filesystem.*;
import flash.events.*;
import mx.controls.*;
private var fileOpened:File = File.desktopDirectory;
private var fileContents:String;
private var stream:FileStream;
private function selectFile(root:File):void {
var filter:FileFilter = new FileFilter("Text", "*.txt");
root.browseForOpen("Open", [filter]);
root.addEventListener(Event.SELECT, fileSelected);
}
private function fileSelected(e:Event):void {
var path:String = fileOpened.nativePath;
filePath.text = path;
stream = new FileStream();
stream.addEventListener(ProgressEvent.PROGRESS, fileProgress);
stream.addEventListener(Event.COMPLETE, fileComplete);
stream.openAsync(fileOpened, FileMode.READ);
}
private function fileProgress(p_evt:ProgressEvent):void {
fileContents += stream.readMultiByte(stream.bytesAvailable, File.systemCharset);
readProgress.text = ((p_evt.bytesLoaded/1048576).toFixed(2)) + "MB out of " + ((p_evt.bytesTotal/1048576).toFixed(2)) + "MB read";
}
private function fileComplete(p_evt:Event):void {
stream.close();
//fileText.text = fileContents;
}
private function process(c:String):void {
if(!c.length > 0) {
Alert.show("File contents empty!", "Error");
}
//var array:Array = c.split(/\n/);
}
]]>
</mx:Script>
</code></pre>
<p>Here is the MXML</p>
<pre><code><mx:Text x="10" y="10" id="filePath" text="Select a file..." width="678" height="22" color="#FFFFFF" fontWeight="bold"/>
<mx:Button x="10" y="40" label="Browse" click="selectFile(fileOpened)" color="#FFFFFF" fontWeight="bold" fillAlphas="[1.0, 1.0]" fillColors="[#E2E2E2, #484848]"/>
<mx:Button x="86" y="40" label="Process" click="process(fileContents)" color="#FFFFFF" fontWeight="bold" fillAlphas="[1.0, 1.0]" fillColors="[#E2E2E2, #484848]"/>
<mx:TextArea x="10" y="70" id="fileText" width="678" height="333" editable="false"/>
<mx:Label x="10" y="411" id="readProgress" text="" width="678" height="19" color="#FFFFFF"/>
</code></pre>
<p>step 3 is where I am having some troubles. There are 2 lines in my code commented out, both lines cause the program to freeze.</p>
<p>fileText.text = fileContents; attempts to put the contents of the string in a textarea <br/>
var array:Array = c.split(/\n/); attempts to split the string by delimiter newline</p>
<p>Could use some input at this point...
Am i even going about this the right way?
Can flex/air handle files this large? (i'd assume so)
This is my first attempt at doing any sort of flex work, if you see other things ive done wrong or could be done better, i'd appreciate the heads up!</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/300671/how-do-i-parse-a-text-file-in-c0How do i parse a text file in c#.Killa Bee2008-11-19T00:37:17Z2009-08-25T08:55:41Z
<p>How do i parse a text file in c#?</p>
http://stackoverflow.com/questions/1313360/writing-a-text-file-from-vb-net-encoding-problem1Writing a Text file from VB.NET (Encoding Problem)Burnsys2009-08-21T17:55:53Z2009-08-21T18:05:03Z
<p>I am writing an application that must generate a plain Text file with fixed sized columns.</p>
<p>my current code is:</p>
<pre><code>Dim MyFilePath As String = Path & FILE_PREFIX & FileNr & ".TXT"
IO.File.Delete(MyFilePath)
Dim FileStr As New IO.StreamWriter(MyFilePath, False, <ENCODER HERE>)
Do While r.Read
FileStr.WriteLine(r("TXTLine"))
Loop
FileStr.Close()
r.Close()
</code></pre>
<p>My problem is that i have some special characters like: "ñ", "à", etc, and i can't find the right encoding.</p>
<ul>
<li>If i use default, then it replaces
"ñ" with 2 characters.</li>
<li>If i use ASCII then all special
Characters end up as: "?"</li>
<li>If i use UTF-8 then all text is ok,
but it add a "ÿ" in the first byte of
the file.</li>
</ul>
<p>I need the special characters to be writed in the textfile just as they came in the datareader. And i can't have extra characters added becouse columns are of fixed lenght..</p>
<p>What could i do?</p>
<p>Thanks in advance.</p>