473,544 Members | 1,912 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Perl Forum

Perl programming language - ask questions about perl programming, syntax, variables, scoping, constructs, operators and functions, files, I/O, regular expressions, regex, subroutines, OO (object oriented), perl modules, CGI and more.
4
2,521
thread by: tastingoo | last post Sep 29 '11 by: tastingoo
Hi, I'm having problems accessing the worksheet after creating the worksheet in an IF statement. For some reason, if I create the worksheet in the else statement, my $rxsheet address is gone once the else statement is exited causing me to not be able to access that worksheet. I noticed that I had to create the worksheet outside the...
1
1,982
thread by: raj svs | last post Sep 30 '11 by: RonB
Hi, i am trying to convert xml file into hash table can any one help me, how to convert it using perl. my xml file data like this <data> <name>raj</name> <age>28</age> <area>s.r nagar</area> </data> i have more comments like this in my xml file.
5
27,541
thread by: Nathan Belomy | last post Sep 30 '11 by: Nathan Belomy
#!/usr/bin/perl @array = (1..1000); sub total { my($v1) = print @array; } my($output) = &total();
6
9,435
thread by: johntology | last post Oct 10 '11 by: sakurakun
Hello, I'm having a tough time using chdir in different versions of perl in a dos window (XP). In early versions of Perl 5.x it works just fine. I have a bat file that dynamically sets my perl path to either 5.0.x or to 5.8.8: path %path%;c:\perl\ Then in I call the perl script which just has this:
0
1,556
thread by: swetha005 | last post Oct 13 '11 by: swetha005
my $LastRow = $worksheet->UsedRange->Find({What=>"*", SearchDirection=>xlPrevious, SearchOrder=>xlByRows})->{Row}; my $LastCol = $worksheet->UsedRange->Find({What=>"*", SearchDirection=>xlPrevious, SearchOrder=>xlByColumns})->{Column}; From this code I get the number of rows and columns used. But how do I find out the first row and the...
2
2,175
thread by: rse2 | last post Oct 14 '11 by: RonB
Hello, I am having a lot of trouble with getting a file to load. When i try it says internal server error. When i go to error logs to check what the problem is, it say premature ending of script headers. I tried changing the permissions to 755. I think i fixed all the syntax errors. it still won't work. :( Here is the page
1
2,188
thread by: typedefcoder | last post Oct 16 '11 by: RonB
I have two files, xml and an html and need to extract data from these on certain patterns. my XML file is pretty well formatted and i can use getline to read a line and search data between tags. if($line =~ /\$varvalue\</tag1>/) However, for my HTML, it has one of the worst code i have scene and the file is like... <div...
1
1,481
thread by: vini007mca | last post Oct 19 '11 by: numberwhun
Hi, i am newbie in perl, Scenario: till now i am able to connect Mysql database with perl script and able to display records, insert records ,search option through browser. Problem : But i don't no how edit the data through the browser... please help
0
1,301
thread by: rndpilot | last post Oct 19 '11 by: rndpilot
I'm using XML::XPath for a long time to parse xml, now the situation has come to modify the attribute value. xml is available in a file, it will be very similar to this. <AppName> <Action AllDay='1' StartRace='1'/> <StartPoint AM_PM='AM' Hours='09' Mins='30'/> <EndPoint AM_PM='PM' Hours='06' Mins='30'/> </AppName>
2
1,528
thread by: hervebags | last post Oct 20 '11 by: RonB
Hi, I have only been learning Perl for less than 2 weeks. I am a C++ programmer. I have attached a portion of the data below. The data is in file1.txt. I would like to move the data from file1.txt to file2.txt. But, I only want to keep the numbers. Eg: I want row 1 to look like this: 1 1549367 11 8 3 11 0 ...
3
3,195
thread by: somsub | last post Oct 21 '11 by: lanurk
Hi, I m facing a problem to add an array as a comment to a MS excel cell using Spreadsheet :: WriteExcel . I m using the below code use Spreadsheet::WriteExcel; $workbook = Spreadsheet::WriteExcel->new('perl.xls'); $worksheet = $workbook->add_worksheet(); print "\n \n Enter a path value to take its contns \n";
1
5,376
thread by: babp | last post Oct 31 '11 by: numberwhun
Hi , Please help me for this authentication erroror: I am trying to ssh to a client(est21.ind.bg.com) using Net::SSH::Expect . As per the login is successful but getting following error .I tried with diffrent timeout value also. SSHAuthenticationError Login timed out. The input stream currently has the contents bellow: Last successful...
1
2,658
thread by: safiqurr01 | last post Nov 1 '11 by: toolic
I have a csv file with particular data in certain locations.As for example 20,3678863,Y,Sinha,Varun,51400195, 051-40-0195,7/19/1947 3237.14,4656311,Y ,Goswami,Nabajyoti,77502793,077-50-2793,5/5/1962 I have 1000+ lines of data. I want to extract the second and fourth data in a particular row and put it in a hash map. My next task will be to...
1
2,724
Ciary
thread by: Ciary | last post Nov 7 '11 by: Ciary
hi all, i recently encountered a problem about something that should be really easy but in fact i couldn't find any information on how to do it. what i want to do is read a logfile in perl. i open the file, read the data, parse it, then close the file. so far so good. now, while the script is running, i append a few lines to the logfile. i...
1
2,866
thread by: Selva123 | last post Nov 8 '11 by: RonB
Just trigger a command in window and no need to track its status such as failed or executed Hi, I have to execute a windows command with perl and my requirement is just to run the Command and no need to bother the status of the same which I will track the same with the same perl script after some time. Hence I do not need system() and...
1
1,954
thread by: ashupdh | last post Nov 8 '11 by: RonB
Hi, I am in Network administration field since last 5 years and now want move ahead with Perl scripting. Can anybody help me, how should I approach it?
1
2,889
thread by: gkec02 | last post Nov 10 '11 by: RonB
i am using windows 7.and i have installed active perl 5.14. here win32::guitest module is missing.i followed all the steps but it wouldnt help me to solve this.it shows it cannot locate Win32/GuiTest.pm in library.i already downloaded the Win32-GuiTest-1.58.tar and extracted it to c:/perl.but it ouldnot solve my problem.again same problem it...
1
1,733
thread by: vibhakhushi | last post Nov 11 '11 by: chorny
Hi All, I am newbie in Perl Scripting. I have a requirement where I need to execute sql file on an Sqlite database. sqlite database has been set with password. I could connect to database. But when I try to execute sql statements its giving as "DBD::SQLite::db prepare failed: file is encrypted or is not a database at <SQL> line 1." Here is...
1
1,657
karthik1981
thread by: karthik1981 | last post Nov 15 '11 by: numberwhun
Hi all, Please provide the methods for How to Learn perl language, because it must be inportant to me in E-publishing field. What books or sites are used to learn easily? awaiting for your reply. Regards, Karthik V.
3
3,555
karthik1981
thread by: karthik1981 | last post Nov 15 '11 by: numberwhun
Hi all, How to find junk character using perl in xml file? thanks in advance Karthik
3
1,990
thread by: saifee | last post Nov 23 '11 by: erick1986
i want to screen scrap title tag info which is inside image tag..which is in table td tag..so here is structure <td> <img title="some" src=""> i want title tag text from other site using screen scrap...
1
3,730
thread by: Brian Dinh | last post Nov 24 '11 by: numberwhun
I've created a program that can read DNA sequences that can generate the complementary strand, which further translates to an mRNA. However, I have to find the longest possible open reading frame for that DNA. I've coded something, but when it prints out the statement, I get no answer. Help? This is what I have; # Search for the longest open...
1
3,202
thread by: Barath Kumar | last post Nov 28 '11 by: numberwhun
I am getting an following error when I run a perl command 11/25/2011 02:13:36 WARN dpa.pl cannot create new child server: Wide character in syswrite at Cmd.pm line 217. line 217 is $cmd->close
0
1,326
thread by: dillipkumar | last post Dec 5 '11 by: dillipkumar
Hi, I have 2 files having contents: target.txt ---------- 1=av 2 a= #abc
1
2,006
thread by: pikato | last post Dec 5 '11 by: RonB
Hi everyone, I would like to know if Perl could run faster similar to PHP. I use Perl/Jquery/Mysql/Apache. Is there any tools to enhance the overall throughput. Thank you.

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.