| Thread | Last Post | Replies |
|
| Unable to read the string | 31 Jul 2008 20:25 GMT | 2 |
Hi this is Arun here, i am new to perl.Here i am trying to read a string from the serial port but i am not able to and this is my program: # Read serial port until message or timeout occurs
|
| How do I use HTML::Stripper without lwp? | 31 Jul 2008 19:44 GMT | 3 |
My code is as follows: use strict; use HTML::Stripper; use LWP::Simple qw( get ); my $stripper = HTML::Stripper->new( skip_cdata => 1, strip_ws => 0 ); my $page_html = get(http://www.google.com/about.html); open(FILE, ">
|
| ARGV array regarding | 31 Jul 2008 15:57 GMT | 2 |
This is my part of the script, if (($#ARGV == 1) && ($ARGV[0] eq "-f")) { .......... ............
|
| can perl program do this? | 31 Jul 2008 14:08 GMT | 5 |
say I have big wireshark file based on remote server. I want to logon to that server and using Net::Pcap to poke the file and only grep out small portion of information which meets my criteria. Remote server won't have Net::Pcap installed.
|
| Problems w/ MVS::JESFTP.pm | 31 Jul 2008 01:00 GMT | - |
Running the following script: my $MyJES = MVS::JESFTP->open($MyHost, $MyLogonId, $MyPw) or die; printf "open to MVS completed w/o error\n"; if ( ! defined $MyJES->submit($MyJob) ) {; #$job is the absolute name of
|
| XS | 31 Jul 2008 00:43 GMT | 4 |
Inside a c routine (ie. inside a .c file) is there any way to define a variable of type SV (or SV *) ? From xs, it is no problem. Regards
|
| Evaluate an operator given as a string | 30 Jul 2008 21:36 GMT | 2 |
I'm trying to pass the operators ">=" or "<=" to a subroutine, and then use it inside an "if" statement. What changes should i apply to the code below to make it work ? my_evaluate ( ">=");
|
| How to get a computed string to act as a re in if statement | 30 Jul 2008 21:25 GMT | 2 |
I am working on the sub below. The aim is to create a string from values passed to the sub-routine and then use that as a if criterion for the push operation. Is this possible?
|
| Checking to see if file exists. | 30 Jul 2008 20:23 GMT | 7 |
I am totally confounded by what appears to be a bug in the "does file exist" functionality. Here is the code as it stands now: my $tmpfile = substr ($file, 0, index($file, ".pgp"));
|
| use of Configuration files | 30 Jul 2008 18:12 GMT | 1 |
Dear gurus, I want to know how to use configuration files concept in Perl, using configuration files working with Perl scripts that is using reading an input from *.ini files and if possible sample files for my reference Regards Manikandan
|
| Embedding Perl in C: problem with modules | 30 Jul 2008 18:10 GMT | - |
I have a problem. I need persistent Perl interpreter in my C program and a function, that can run my scripts and can make addition things with data from the script. In the function I carry out set of perlapi functions: perl_construct(), perl_parse(), perl_run and perl_destruct(). ...
|
| sitemap generator for Perl | 30 Jul 2008 17:48 GMT | - |
Is it possible to run a site map generator with Perl without running it from the server? Basically, I want to run the sitemap generator client-side. Here's t he module I'm working with:
|
| Regular expression: How to determine wether entry is a number? | 30 Jul 2008 17:33 GMT | 10 |
Dear Group, I'm new to Perl and I have a simple question: I ask for the entry of a number vie <STDIN>: ----------------------------------------
|
| rand() | 30 Jul 2008 15:28 GMT | 16 |
How do I use the rand function to print out more than one random number for an array? In the example script below i have an array @nums with a list of numbers; how do i print out more than one random numbers from that list (@nums)? Thanks. #!/usr/bin/perl use strict; use warnings;
|
| Question about lwp-rget | 30 Jul 2008 15:12 GMT | 1 |
If I use lwp-rget to retrieve a Web site, will it retrieve new pages added that may not be linked to? For example, the site www.123.com is composed of 10 pages, each of which is accessible through links on the site.
|