Viruses

2002-07-17 Thread Admin
Please ensure your computers are virus free before sending attachments through this mailing list. In the past 2 weeks I have received notification from my Microtrend PC-cillin of no less than 6 worm/trojan infected files sent through this group. If others on this list do not have adequate virus

Re: multi-page form and cgi.pm

2002-07-17 Thread Connie Chan
First, you can use cookies, temp files. > with multiple > scripts and html forms and hidden fields. Do you mean that's a CGI script ? or Javascript ? > However, I would like to try to > use one script with subroutines. I guess my main stumbling block is passing > hidden form fields betwe

multi-page form and cgi.pm

2002-07-17 Thread Hughes, Andrew
I have been given the task of creating a multi-page form that will consist of 4 parts. The final page will the list out everything that the users have entered and ask if they would like to go back to any of the 4 sections to update the information. Once the users are satisfied with the final pro

Re: HTML tags - module

2002-07-17 Thread Ovid
--- Octavian Rasnita <[EMAIL PROTECTED]> wrote: > Hi all, > > I want to get a web page and remove all the HTML tags from it, then save the > visible text only. Like saving the file as text from Internet Explorer. > > Do you know a Perl module that can help me to find and remove all the HTML > ta

RE: HTML tags - module

2002-07-17 Thread Scot Robnett
You can try HTML::FormatText for this. It doesn't support tables and forms, though. ## require HTML::TreeBuilder; $tree = HTML::TreeBuilder->new->parse_file("test.html"); require HTML::FormatText; $formatter = HTML::FormatText->new(leftmargin => 0, rightmargin => 50); pr

Re: formate text sequence

2002-07-17 Thread perl-dvd
Konrad, Is this what your looking for? -- my $input = 'ABCDEFGHI'; my $output = $input; $output =~ s/(\w{3})/\$1\<\/p\>/g; print qq^\$input = "$input"\n^; print qq^\$output = "$output"\n^; -- To mak

HTML tags - module

2002-07-17 Thread Octavian Rasnita
Hi all, I want to get a web page and remove all the HTML tags from it, then save the visible text only. Like saving the file as text from Internet Explorer. Do you know a Perl module that can help me to find and remove all the HTML tags? I was thinking to use regular expressions, but I may forge

formate text sequence

2002-07-17 Thread Konrad Foerstner
hi, does anyone know a function or a module which i can use to format a text which i get in a string. i would like to get lines of 40 letters out of the string which are surrounded by "" and ; the result should be stored in an string. short example with 3-letter-lines: $input = 'ABCDEFGHI';

Re: Couple of newbie questions

2002-07-17 Thread zentara
On Tue, 16 Jul 2002 12:53:33 -0400, [EMAIL PROTECTED] (Kerr Wall) wrote: >Hi All, >What is the best way to test and debug? My vote is to use the ptkdb module. It is a graphical tk debugger for perl. It's beautiful, you can make break points, and list variable values; just watch the variables