RE: Help Required on the Script

2006-04-06 Thread Raymond Raj
mean by variable interpolation may be i don't know how to explain "variable interpolation", why not try in google? or some one else from this group will explain you Thanks > > Regards > Mazhar > > On 4/6/06, Raymond Raj <[EMAIL PROTECTED]> wrote: >

RE: Help Required on the Script

2006-04-06 Thread Raymond Raj
> -Original Message- > From: Mazhar [mailto:[EMAIL PROTECTED] > Sent: Thursday, April 06, 2006 2:41 PM > To: Jaime Murillo > Cc: beginners@perl.org > Subject: Re: Help Required on the Script > > > Thank you giyz for the help i require one more help from > yourside. i have > one more code wh

RE: perl help : escape character

2006-04-05 Thread Raymond Raj
> -Original Message- > From: Irfan J Sayed [mailto:[EMAIL PROTECTED] > Sent: Thursday, April 06, 2006 11:29 AM > To: beginners@perl.org > Subject: perl help : escape character > > > Hi All, > > I am running following clearcase command > > my @activity = `$CT lsactivity -short -invob

RE: Help Required on the Script

2006-04-05 Thread Raymond Raj
> -Original Message- > From: Mazhar [mailto:[EMAIL PROTECTED] > Sent: Wednesday, April 05, 2006 12:16 PM > To: beginners@perl.org > Subject: Help Required on the Script > > > Hi Guyz, > i am writin a script to automate the command > snmpwalk by reading > the contents of a fil

RE: can not filter out commentary lines with reg-exps

2006-03-29 Thread Raymond Raj
> -Original Message- > From: Harald [mailto:[EMAIL PROTECTED] > Sent: Wednesday, March 29, 2006 5:53 PM > To: beginners@perl.org > Subject: can not filter out commentary lines with reg-exps > > > Hi, > > I need to parse an ASCII file which first rows are comments. > Those rows > are

RE: why can't getstore function overwrite the existing file?

2004-10-11 Thread Raymond Raj
you have using "$based_url" variable in my $status=getstore($based_url,$filename); but you have declare "$base_url" it's always better using 'use strict' and warnings pragma... -Original Message- From: Franklin [mailto:[EMAIL PROTECTED] Sent: Monday, October 11, 2004 3:18 PM To: [EMA

RE: Creating a word document

2004-09-29 Thread Raymond Raj
hi use Win::OLE module some examples availbe at http://perlmonks.thepen.com/198045.html -Original Message- From: paul beckett (JIC) [mailto:[EMAIL PROTECTED] Sent: Wednesday, September 29, 2004 6:58 PM To: [EMAIL PROTECTED] Subject: Creating a word document I've been trying to find a pe

RE: regex help

2004-09-23 Thread Raymond Raj
Hi! what's problem in these regular expressions.. every thing correct! do you need to convert one or more than one match into single replacement then regexp should be $safeString =~ s/\s+/_/g; -Original Message- From: Johnstone, Colin [mailto:[EMAIL PROTECTED] Sent: Friday, September

RE: import from text file to mysql

2004-09-23 Thread Raymond Raj
>my $sth=$dbh->prepare(" LOAD DATA LOCAL INFILE "/home/roime/MYSQL_PERL/IN_NETWORK/packet.txt" INTO TABLE flow FIELDS TERMINATED BY ',' "); here you had forgot escape the double quotes,should be escaped quotes: \"/home/roime/MYSQL_PERL/IN_NETWORK/packet.txt\" my $sth=$dbh->prepa

RE: how to change values of @INC

2004-09-22 Thread Raymond Raj
you can add new search path using use lib 'path List'; for delete no lib 'path list'; Raymond -Original Message- From: Bernd Mueller [mailto:[EMAIL PROTECTED] Sent: Wednesday, September 22, 2004 8:04 PM To: [EMAIL PROTECTED] Subject: how to change values of @INC Hello, I am tr

RE: Two easy questions.

2004-09-20 Thread Raymond Raj
Hi! "assoc " and "ftype" commands are used to associate extension for particular file types.. >Is there a way to run my script without specifying "Perl" before the script? In other words, I want to type c:\myscript.plx >instead of c:\perl myscript.plx. yes you can, try "assoc /?

RE: entering text in perl/tk

2004-09-20 Thread Raymond Raj
(GEAE, Foreign National, EACOE) [mailto:[EMAIL PROTECTED] Sent: Monday, September 20, 2004 6:19 PM To: Raymond Raj; [EMAIL PROTECTED] Subject: RE: entering text in perl/tk Hi Raj, I don't have the Active State perl widget.bat. If I don't have this what else can be the option?

RE: entering text in perl/tk

2004-09-20 Thread Raymond Raj
Hi, did try widget.bat it's contain lot of example for perl/tk ..if you have Active State perl widget.bat comes with that version -Original Message- From: N, Guruguhan (GEAE, Foreign National, EACOE) [mailto:[EMAIL PROTECTED] Sent: Monday, September 20, 2004 5:50 PM To: [EMAIL PROTE

RE: Regex help

2004-09-13 Thread Raymond Raj
Hi, you should escape "/" char also, here is the problem must be <\/sub> still this regular expression will not give what you expecting result, it remove all alphanumeric char also.. for help try "perldoc perlre" or wait some time some one give good guide.. regards Raymond -Original Messa

RE: checking all pieces of split data for NULL

2004-08-13 Thread Raymond Raj
use "perldoc -f length" try "perldoc perldoc" how to use perldoc -Original Message- From: Radhika Sambamurti [mailto:[EMAIL PROTECTED] Sent: Wednesday, August 11, 2004 11:16 PM To: [EMAIL PROTECTED] Subject: Re: checking all pieces of split data for NULL Hi, Just for extra informa