how to insert records into table in oracle database.

2009-01-17 Thread Sureshkumar M (HCL Financial Services)
Hi, Can some one help me how to insert records into oracle database tables using Perl script? Regards, Suresh DISCLAIMER: --- The contents of this e-mail and any attachm

RE: date format search insdie the files

2008-11-29 Thread Sureshkumar M (HCL Financial Services)
rg Subject: Re: date format search insdie the files "Sureshkumar M (HCL Financial Services)" schreef: > #/usr/bin/perl > open(DATA,"a1")||die"Unable to open the file"; > while() > { > if($_=~/\d{2}-(\d{2}|\w{3})-\d{1,4}/) > { > print $_; > } >

Mailing list

2008-11-29 Thread Sureshkumar M (HCL Financial Services)
Hi All, Can someone send the maid's for Perl forum where I can clear all my doubts? I would like to discuss lot of doubts and get answer and get quick answers. Regards, Suresh

RE: date format search insdie the files

2008-11-29 Thread Sureshkumar M (HCL Financial Services)
Hi all , Can someone help me on this From: Sureshkumar M (HCL Financial Services) Sent: Saturday, November 29, 2008 4:21 PM To: 'David Schmidt' Cc: beginners@perl.org Subject: RE: date format search insdie the files Hi David,

RE: date format search insdie the files

2008-11-29 Thread Sureshkumar M (HCL Financial Services)
8 05-07-1981 20-03-20009 15-10-2008 (C)/tmp/d$ -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of David Schmidt Sent: Saturday, November 29, 2008 3:12 PM To: Sureshkumar M (HCL Financial Services); beginners@perl.org Subject: Re: date

date format search insdie the files

2008-11-29 Thread Sureshkumar M (HCL Financial Services)
Hi All, I try to search the string which has the date format inside the file, But i am not able to get the desired files. Pls help me on this.. C)/tmp/sms/perl$ cat a1 115-06-1979 10-11-81 20-NOV-2008 05-07-1981 welcome 15-10-2008 12-03-20009 (C)/tmp/sms/per

Date format search in the file

2008-11-22 Thread Sureshkumar M (HCL Financial Services)
Hi All, I want to find the string which are having the date inside the file. Please help me how do I match it,below is my program and it's not returning anything. #!/usr/bin/perl open(DATA,"i")||die "Unable to open the file"; while() { if($_=~/(\d{2})([\W])\1\2\1]/) { pr

String concatination.

2008-11-10 Thread Sureshkumar M (HCL Financial Services)
Hi all, I have a string like below. $string="ABCD"; While printing , I have to include some extra strings in prefix and suffix of the stringlike below... abcABCDxyz how do I do this.? actually I tried like below.. print "abc$sting\xyz"; B