0
votes
2answers
46 views
getchar() and counting sentences and words in C
I'm creating a program which follows certain rules to result in a count of the words, syllables, and sentences in a given text file.
A sentence is a collection of words separated by whitespace that …
6
votes
7answers
2k views
How do I split a huge text file in python
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 …
0
votes
4answers
226 views
creating/editing textfile through vb.net
how do i code in vb.net the algorithm below. tnx!
Procedure logfile()
{
if "C:\textfile.txt"=exist then
open the textfile;
else
create the textfile;
end if
go to the …
6
votes
4answers
381 views
Historical reason behind different line ending at different platforms
Why did DOS/Windows and Mac decide to use \r\n and \r for line ending instead of \n? Was it just a result of trying to be "different" from Unix?
And now that Mac OS X is Unix (-like), did Apple …
5
votes
2answers
109 views
In Powershell, what’s the most efficient way to split a large text file by record type?
I am using Powershell for some ETL work, reading compressed text files in and splitting them out depending on the first three characters of each line.
If I were just filtering the input file, I …
0
votes
1answer
36 views
Will a Flash .swf file execute a .exe file on Mac?
Hi there
I am busy updating a Flash application from a previous developer, but it was written for Windows. I am busy developing on Mac and there is this segment of code:
_global.localSO = …
7
votes
8answers
5k views
How can you find and replace text in a file using the Windows command-line environment?
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 …
0
votes
5answers
138 views
How can I quickly determine the amount of rows in a text file?
I'm new to using C programming I was wondering if there is a function call that can be used to quickly determine the amount of rows in a text file.
1
vote
8answers
149 views
C# resuable library to treat a text file like a database table?
I would like to store values in a text file as comma or tab seperated values (it doesn't matter).
I am looking for a reusable library that can manipulate this data in this text file, as if it were a …
0
votes
3answers
47 views
fgetcsv - Add Quotes to fields that do not have quotes
Hello all,
I have a text file (its comma delimited with some fields wrapped around in double quotes) when I parse through it using this:
if (($handle = fopen('C:\tester\fake.txt', "r")) !== FALSE) {
…
0
votes
1answer
55 views
Bind WPF TextBlock to text file
How can I bind a WPF TextBlock to a text file? I want for the TextBlock to display the content of the file.
0
votes
3answers
76 views
How do I use a Save Dialog Box in C# to save an ASCII text file?
Okay, I'm probably missing something really simple here, but I've been at this for over an hour now and getting nowhere. :( I have a C# project using Microsoft's Visual C# 2008 Express Edition. The …
0
votes
6answers
67 views
Most non-confrontational delimiter for my text files?
I am saving all my notes in a log file. Each line is a note, suffixed by tags, and prefixed by a date and time marker, which currently looks like this: [12.20.09:22.22] ([date:time].
I am planning …
0
votes
2answers
45 views
Problem with Extracting NSString from TXT
I am trying to create one long string from a text file. This is the code that I currently have. I do not really understand the encoding and I tried to research but found nothing. This is the line of …
0
votes
2answers
161 views
How do I write a text file in the same format that it is read in MATLAB?
I have asked a related question in the past and I know how to read the file thanks to the help of the experts here. Now I have a new problem. I first read the data from the file like so:
fid = …
