Re: Deleting HTML code from a text file.

2003-09-04 Thread $Bill Luebkert
Sara wrote: > I have a couple of text files with html code in them.. e.g. > > -- Text File -- > > > This is Test File > > > This is the test file contents > > blah blah blah. > > > > - > > What I want

Deleting HTML code from a text file.

2003-09-04 Thread Sara
I have a couple of text files with html code in them.. e.g.   -- Text File --             This is Test File     This is the test file contents blah blah blah.   -   What I want to do is to remove/delete HTML code from

RE: File Comparison

2003-09-04 Thread Hemphill, Barry
Title: File Comparison Ken,   Try reading only nut.dat into memory, and the process data.dat one line at a time. If data.dat is huge, you're probably filling up memory and possibly paging a lot while you iterate through it. It makes perfect sense to load nut.dat into memory as you're iterati

Re: File Comparison

2003-09-04 Thread $Bill Luebkert
Kenneth Jideofor [ MTN - Ikoyi ] wrote: > > Hi Guys, > > I have two files, nut.dat and data.dat. > The first file, nut.dat, contains lines of eleven digit figures; each > line in this file is an eleven-digit figure. > The second file, data.dat, contains lines of spaced figures; each line > havin

RE: File Comparison

2003-09-04 Thread Wagner, David --- Senior Programmer Analyst --- WGO
Title: File Comparison It seems like you are working too hard.       If file1 is small or even moderately large, you could create a hash with the data from file 1 as the key(ie, $MyHash{$MyKey} = 1).  Now you only need read your other file and I would do it one line at a time like my %MyHash =

File Comparison

2003-09-04 Thread Kenneth Jideofor [ MTN - Ikoyi ]
Title: File Comparison Hi Guys, I have two files, nut.dat and data.dat. The first file, nut.dat, contains lines of eleven digit figures; each line in this file is an eleven-digit figure. The second file, data.dat, contains lines of spaced figures; each line having four groups of eleven-digi

Re: PerlSvc problem

2003-09-04 Thread Jan Dubois
On Thu, 4 Sep 2003 09:48:48 +0200, [EMAIL PROTECTED] wrote: >I try to get a Win32 service running using the Activestate PDK. The >problem is that I would like to initialize a variable during the Install >method and use it later in the Startup method. The code below, however, is >not working as

Resizing the parent widget while running

2003-09-04 Thread jon sof
can i do that resize (toplevel widget) according to Frames size? _ The new MSN 8: advanced junk mail protection and 2 months FREE* http://join.msn.com/?page=features/junkmail ___ ActivePer

PerlSvc problem

2003-09-04 Thread ekkehard . goerlach
I try to get a Win32 service running using the Activestate PDK. The problem is that I would like to initialize a variable during the Install method and use it later in the Startup method. The code below, however, is not working as expected. If run interactively all is fine (the executable is na