Re: Extracting Info from a websource

2003-01-10 Thread Kieren Diment
On Fri, Jan 10, 2003 at 12:51:45AM +0530, Sukrit wrote: > Problem Overview > - > Somewhere on the world wide web, exists an asp page with the following > form - > > > On entering a valid roll number and pressing enter, results for that number > are displayed. Currently this has

Re: Perl editors

2003-01-01 Thread Kieren Diment
On Tue, Dec 31, 2002 at 10:33:46AM -0500, Paul Kraus wrote: > I am running emacs for windows. How do I use these debugging options? I > currently use cperl mode. > I haven't looked at it too hard, but, under xemacs using linux I get a reasonable debugging environment via the Debugger option on t

Re: Perl editors

2002-12-31 Thread Kieren Diment
On Sun, Dec 29, 2002 at 10:46:36AM +, Gavin Laking wrote: > Hi folks, > > I'm currently using a mixture of Quanta[1], jEdit[2] and Kate[3] (all Linux) > for my Perl editing needs, but I'm wondering if there are any specialised > editors(preferably free) which others are using. > > In my ideal

Help with -e switch

2002-12-24 Thread Kieren Diment
I'd like to know if it's possible to combine the -i and -e switches. I have the following script, and I'd like not to have to go to the bother of firing up an editor, chmod +x ing it and co: #!/usr/bin/perl -w open FILE, $ARGV[0]; while () { print if (/(^org_name)|(^email)|(^$)/);