I would like to thank DJanda and IH8U for responding, but I think I should probably be more descriptive of my needs.
I deal with 2 different types of text files, and the problems arise when I need to edit these files in order to import them into a database. The first is downloaded comma separated strings of data, which can sometimes be quite large (over 1MB). In some of these I have to search and replace CR/LF strings, and in some I have to insert CR/LF strings. Quite often, the date field has to be reformatted into an acceptable format. I do so wish the world could find a single date standard instead of this mish-mash that we have now. What does the date 09/08/07 mean? In Canada, it is Aug. 9, 2007. In the US, it is Sep. 8, 2007. The one that makes most sense is the International standard of Aug, 7, 2009. Why? Because it is in the biggest to smallest order like most other numbers, and consequently is very easy to sort. (rant over)
The second type of text file that I deal with are log files. Log files can also be quite large, and sometimes contain many lines of text and partial lines of text that need to be deleted. It would be a real timesaver if I had a text editor that could search for a particular string and delete the entire line that contains that string. What would also be handy is to be able to sort on text in the middle of a line, instead of just the beginning of the line. For text file sorting, I am now using the command line sort:
type abc.txt|sort>abcsorted.txt
which is quite fast but rather limited.
Any feedback would be much appreciated.
J.A. Coutts