Search Discussions
-
Here is a list of Perl links: Official site http://www.perl.org/ Beginners' help http://learn.perl.org/faq/beginners.html Advance help http://perlmonks.org/ News http://perlsphere.net/ Documentation ...
Shawn H Corey
May 30, 2016 at 11:59 am
May 30, 2016 at 11:59 am -
I am getting no response from this post on the FreeBSD Forums: https://forums.freebsd.org/threads/56291/ If I try to execute a simple perl script that utilizes the DBI, the following error ...
Ron Wingfield
May 17, 2016 at 7:15 pm
May 17, 2016 at 7:15 pm -
Hi Please advise, I can't unsuscribe from this mail list Thanks Ilan
Ilan Shlossman
May 15, 2016 at 5:26 am
May 15, 2016 at 9:15 am -
I wrote this scrpt to fork off a few child processes, then the child processes process some data, and send the data back to the parent through a tcp socket. This is not working as i expected it ...
Unknown User
May 13, 2016 at 3:30 pm
May 16, 2016 at 2:17 pm -
... I appreciate perl for: $dbh- do("INSERT INTO $T_ENTRIES (" . join(', ', map($dbh- quote_identifier($_), $cgi- param)) . ') VALUES (' . join(', ', map($dbh- quote($_), map($cgi- param($_), $cgi- ...
Lee
May 13, 2016 at 12:05 am
May 15, 2016 at 2:00 am -
sorry but i think this is way beyond a beginner's question. you should write to the perl5 porters list <span class="m_body_email_addr" title="09202e8285795619cb58a6e55f7a43ce" ...
Uri Guttman
May 12, 2016 at 8:24 pm
May 12, 2016 at 8:24 pm -
What are the best practices for working with binary data? If I read a span of binary data, say, into $packet like with read() below my ( $packet_size, $packet ); read( $client_socket, $packet_size, 4 ...
Lars Noodén
Mar 31, 2016 at 10:49 am
Mar 31, 2016 at 11:38 am -
Hi All, Can you please help me to grep below 'block of text' from my file ? this blocks occurs number of time & I want to grep all in between lines of this block - first line is having - retr_test ...
Prashant Thorat
Mar 18, 2016 at 1:37 pm
Mar 19, 2016 at 4:59 am -
Hi, I'd like to write a plugin for an IRC bot (which is based on POE::Component::IRC) using POE::Component::IRC::Plugin. I want it to do the following (this is a simplified version of what I actually ...
Pablo báez
Mar 16, 2016 at 5:42 am
Mar 29, 2016 at 2:09 pm -
From time to time a student asks me a question and answering it turns into a blog post. It just occurred to me that these answers might be useful to some of the people on this list ...
Andrew Solomon
Mar 13, 2016 at 3:27 pm
Mar 13, 2016 at 3:27 pm -
If I have the code below to fork a child process, how would the right way be to fork as a different user? I gather that fork() itself does not support that, so some other method must be used ...
Lars Noodén
Mar 11, 2016 at 6:22 pm
Mar 14, 2016 at 10:59 am -
Hello teachers, I'm converting a simple perl multimedia script to an event based one, but it seems that I'm missing something very basic because I'm unable to make it work. The script receives ...
Mailing lists
Mar 10, 2016 at 10:44 am
Mar 10, 2016 at 10:44 am -
Hi all, I'm building my own robot to do some stuff with a few interactive pages. Since I know that, after filling a form and hitting the button, I'll be redirected to another form/page to fill and so ...
Luca Ferrari
Mar 9, 2016 at 4:36 pm
Mar 9, 2016 at 4:36 pm -
Hi; How do I call the built-in Perl sort function on an array of strings where the string is composed of one or more digits, followed by a tab which is followed by a string and I want the results to ...
Kenneth Wolcott
Mar 8, 2016 at 9:29 pm
Mar 9, 2016 at 2:19 pm -
Hi; What is the Perl equivalent of "net user username \domain" if I am on Linux or Mac? None of our Linux or Mac machines are a member of the specific domain in question. Do have to obtain the name ...
Kenneth Wolcott
Mar 7, 2016 at 8:02 pm
Mar 7, 2016 at 8:02 pm -
#copies 1 file to another use warnings; use File::Copy; copy("FILE1.txt","new_file.txt"); This script works if FILE1.txt is in current directory of windows but when i try to give a full path to a ...
Arghya Das
Mar 2, 2016 at 10:40 am
Mar 2, 2016 at 11:19 am -
use warnings; $dir = "c:/folder/*";my @files = glob( $dir ); foreach (@files ){ print $_ . "\n";} i am trying to read windows directory using above code but it gives errors in recognising tthe ...
Arghya Das
Mar 1, 2016 at 10:23 am
Mar 13, 2016 at 3:26 pm -
$num = 1234; $sum = 0; while ( $num != 0) { $rem = $num % 10; $sum = ( $sum * 10 ) + $rem; $num = $num / 10; } print $sum; please tell what is wrong with the reverse number code . It prints Infinity.
Arghya Das
Mar 1, 2016 at 6:35 am
Mar 1, 2016 at 12:35 pm -
Hi; Can the Perl module Date::Calc be added to Cygwin please? Thanks, Ken Wolcott
Kenneth Wolcott
Feb 29, 2016 at 12:23 am
Feb 29, 2016 at 3:56 am -
HI all I am using object oriented perl and saw return self as well as bless being used According to docs bless returns the reference to self. Why should we use both statements in the new method Sent ...
Rakesh sharma
Feb 28, 2016 at 8:59 am
Feb 28, 2016 at 1:04 pm -
Hi; This seems like a very simple concept, but I'm not getting it, so I'd like some help. So part of this is perl (not understanding readdir and/or glob well enough) and part of it is not getting the ...
Kenneth Wolcott
Feb 24, 2016 at 2:35 am
Feb 24, 2016 at 6:18 pm -
Hi; bash file completion seems to fail for perl -d but works for perl -wc This seems to be the case for Cygwin, Debian and Mac. Does anyone know how to add support for this or am I missing something ...
Kenneth Wolcott
Feb 19, 2016 at 11:39 pm
Feb 20, 2016 at 6:08 pm -
1
Cache::*
Hi, Are there any Cache::* modules that are thread safe and can be used with Threading? Using Cache::Memory (even specifying the same NameSpace), two or more threads can't access the same keys in the ...Chris Knipe
Feb 18, 2016 at 2:16 pm
Feb 20, 2016 at 9:26 am -
Hello! I have the following data(sanitized) : print Dumper \%vars $VAR1 = { 'group1' = '10.100.27.52', 'group2' = '10.100.27.53', 'group3' = '10.100.27.54', 'group4' = '10.100.27.55', 'group5' = ...
Vincent Lequertier
Feb 17, 2016 at 11:16 am
Feb 22, 2016 at 8:21 am -
Hi, is there a way to disable the annoying warnings about carp and cgi which cgi programs write to the web-server's log file in a general way rather than per program? Same goes for smartmatch ...
Lee
Feb 13, 2016 at 1:18 pm
Feb 20, 2016 at 9:26 am -
Hi, how can I make it so that my cgi program displays information on a web page it sends to a user's web browser /and/ then makes the browser's download dialog-box come up to let the user download a ...
Lee
Feb 13, 2016 at 1:18 pm
Feb 16, 2016 at 9:33 pm -
18
Counter Help
Afternoon all, I have the following problem: I have an array containing a list of non-unique strings. eg: @array Contains: 111111_ 222222_ 333333_ 333333_ 333333_ 444444_ 444444_ 555555_ What I would ...James Kerwin
Feb 9, 2016 at 2:08 pm
Feb 12, 2016 at 9:17 pm -
Can someone help me to understand this? #!/usr/bin/perl use strict; use warnings; my $s='\\n'; print $s; Output: \n Expected output: \\n TIA Jorge Almeida
Jorge Almeida
Jan 29, 2016 at 8:39 am
Jan 29, 2016 at 11:19 am -
Hi Team, could you please let me? i have a file which contains "Debug", i would like to replace debug to "Error", when i ran the below program the out showing Error message but how to save the output ...
Frank Larry
Jan 28, 2016 at 9:37 am
Feb 3, 2016 at 3:13 am -
I'm trying to find a way to trap bad item numbers. I want to parse the parameter "itemid=" and then everything up to either an "&" or end-of-string. A good item number will contain only ASCII ...
SSC_perl
Jan 26, 2016 at 12:16 am
Jan 27, 2016 at 9:31 pm -
Hi Kent, Thanks for your time, seems everyone works late (or early) around here. I don't know if just Cc'ing <span class="m_body_email_addr" title="79a74439bb05748df29a2a6f6f53dc84" ...
Frederik
Jan 23, 2016 at 8:41 am
Jan 23, 2016 at 8:41 am -
Hi, how do I arrange two (text) input fields side by side rather than one underneath the other? How do I automatically set the cursor into a particular field when the form is loaded so that keyboard ...
Lee
Jan 22, 2016 at 9:56 pm
Jan 22, 2016 at 9:56 pm -
Hi all, I am trying to execute some perl scripts. I am getting following error. But other user in the same server are not getting the error. So can anybody help me understanding this problem. And why ...
Ankita Rath
Jan 6, 2016 at 3:34 pm
Jan 7, 2016 at 9:44 am -
Hi, I am trying to retrieve the port details by the process id as like below, but it fails. my $port = `ss -l -p -n | grep $pid| grep -v grep 2 &1`; When I manually issue the command with the pid, it ...
Perl kamal
Dec 23, 2015 at 2:28 pm
Jan 4, 2016 at 1:51 pm -
Hi Folks I need write a simple report from a CSV file containing users and passwords for a bunch of random users for using in a public wifi system, additionally put a qrcode in the report for easy ...
Francisco Valladolid H.
Dec 20, 2015 at 6:41 am
Dec 21, 2015 at 11:13 am -
++Subject & Thanks.
Perl kamal
Dec 16, 2015 at 7:40 pm
Dec 17, 2015 at 3:40 am -
4
Perl 6
Hi All, Please let me know difference between Perl 5 and Perl 6? -- Regards, JitendraJitendra Barik
Dec 15, 2015 at 8:59 am
Dec 16, 2015 at 9:54 am -
Hi, Did anyone encounter the scenario where scp_put is failing (too many arguments) when the directory contains too many files? We have 36K files in the directory and it is failing... (with lower ...
Ori Raz
Dec 11, 2015 at 3:28 pm
Dec 29, 2015 at 9:30 am -
Hi, I am trying to parse the inner loop elements of the attached input xml elements. The below code doesn't retrieve the inner loop(<property ) elements if the properties tag contains more than one ...
Perl kamal
Dec 8, 2015 at 6:25 am
Dec 8, 2015 at 12:10 pm -
Hi; I've inherited a lot of Perl [mostly ActiveState] (and bash) scripts were the former writers and maintainers did not use "use strict" and "use warnings" and have other "less than Best ...
Kenneth Wolcott
Dec 8, 2015 at 2:32 am
Dec 22, 2015 at 11:37 pm -
Hi, how can I extract images and information from another cell in the same row from a spreadsheet? The spreadsheet is in xls and can be converted to ods (or other formats Libreoffice supports). The ...
Lee
Dec 2, 2015 at 3:55 pm
Dec 2, 2015 at 3:55 pm -
As part of the annual London Perl Workshop, on December 12 at 9.10am I'll be running an intensive class on Perl for people with experience of other programming languages ...
Andrew Solomon
Nov 29, 2015 at 8:14 pm
Nov 29, 2015 at 8:14 pm -
Hi All, Please let me know the best reference book for Advance OOPs concept. Thanks. Please let me know about the book : OO Perl By Dr Rana Conway ...
Jitendra Barik
Nov 29, 2015 at 7:42 am
Nov 30, 2015 at 4:54 am -
Hey, can you please remove me from the mailing list? Thanks!
Parysatis Sachs
Nov 26, 2015 at 3:06 pm
Nov 26, 2015 at 3:29 pm -
The following code apparently is not doing what I wanted. My intention was to confirm that the general format of $student_id was this: several uppercase letters followed by a hyphen followed by ...
Rick T
Nov 25, 2015 at 5:09 pm
Nov 25, 2015 at 6:47 pm -
gb@MINT ~/Perl5/perl programs $ cat prog164.pl #!/usr/bin/perl use strict; use warnings; while ($line = < ) { while ($line =~ s#\d+\s*[*+-/]\s*\d+(\s*[*+-/]\s*\d+)*#<x #) { eval ("\$result = $&;") ...
Gary Baker
Nov 25, 2015 at 3:09 pm
Nov 26, 2015 at 8:17 am -
Hi I want to create a unique array . I have the code below. It is creating a array which will have duplicate data . How can I filter duplicate data ? #!/usr/bin/perl use Data::Dumper; #my $cnt = ...
Sunita Pradhan
Nov 25, 2015 at 7:53 am
Nov 29, 2015 at 7:16 pm -
Hi, I am facing an issue with my script while creating a XML . Below is required structure :- <opt <rule disabled="false" logged="false" <appliedToList <appliedTo <name xyz</name <isValid ...
Punit Jain
Nov 20, 2015 at 10:12 pm
Nov 20, 2015 at 10:12 pm -
Hello Group, I have the following in my makefile. Doesn’t work the way I intend it to. How do I do conditional test with a regular expression ? ifeq (${HOST_TYPE},x86_64) ---------------------- à ...
Uday Vernekar
Nov 19, 2015 at 9:39 am
Nov 19, 2015 at 9:39 am -
Thanks!
Hannah Smithers
Nov 18, 2015 at 12:46 am
Nov 22, 2015 at 3:51 pm
Group Overview
group | beginners |
categories | perl |
discussions | 28,480 |
posts | 125,574 |
users | 9,763 |
website | perl.org |
Top users
Archives
- May 2016 (29)
- March 2016 (38)
- February 2016 (66)
- January 2016 (62)
- December 2015 (36)
- November 2015 (59)
- October 2015 (35)
- September 2015 (32)
- April 2015 (18)
- March 2015 (101)
- February 2015 (74)
- January 2015 (99)
- December 2014 (74)
- November 2014 (65)
- October 2014 (47)
- September 2014 (66)
- August 2014 (68)
- July 2014 (171)
- June 2014 (85)
- May 2014 (126)
- April 2014 (36)
- March 2014 (162)
- February 2014 (154)
- January 2014 (94)
- December 2013 (42)
- November 2013 (71)
- October 2013 (192)
- September 2013 (143)
- August 2013 (114)
- July 2013 (141)
- June 2013 (201)
- May 2013 (163)
- April 2013 (90)
- March 2013 (125)
- February 2013 (150)
- January 2013 (185)
- December 2012 (120)
- November 2012 (101)
- October 2012 (117)
- September 2012 (180)
- August 2012 (319)
- July 2012 (170)
- June 2012 (223)
- May 2012 (249)
- April 2012 (298)
- March 2012 (311)
- February 2012 (261)
- January 2012 (155)
- December 2011 (282)
- November 2011 (266)
- October 2011 (316)
- September 2011 (369)
- August 2011 (371)
- July 2011 (310)
- June 2011 (392)
- May 2011 (434)
- April 2011 (630)
- March 2011 (440)
- February 2011 (282)
- January 2011 (419)
- December 2010 (319)
- November 2010 (314)
- October 2010 (360)
- September 2010 (256)
- August 2010 (223)
- July 2010 (340)
- June 2010 (298)
- May 2010 (483)
- April 2010 (683)
- March 2010 (480)
- February 2010 (339)
- January 2010 (322)
- December 2009 (531)
- November 2009 (558)
- October 2009 (375)
- September 2009 (449)
- August 2009 (497)
- July 2009 (428)
- June 2009 (306)
- May 2009 (293)
- April 2009 (362)
- March 2009 (477)
- February 2009 (467)
- January 2009 (408)
- December 2008 (405)
- November 2008 (545)
- October 2008 (770)
- September 2008 (662)
- August 2008 (663)
- July 2008 (773)
- June 2008 (730)
- May 2008 (650)
- April 2008 (791)
- March 2008 (692)
- February 2008 (399)
- January 2008 (694)
- December 2007 (581)
- November 2007 (688)
- October 2007 (882)
- September 2007 (709)
- August 2007 (1,243)
- July 2007 (849)
- June 2007 (898)
- May 2007 (796)
- April 2007 (587)
- March 2007 (705)
- February 2007 (521)
- January 2007 (578)
- December 2006 (565)
- November 2006 (555)
- October 2006 (704)
- September 2006 (734)
- August 2006 (725)
- July 2006 (884)
- June 2006 (681)
- May 2006 (703)
- April 2006 (889)
- March 2006 (724)
- February 2006 (607)
- January 2006 (588)
- December 2005 (684)
- November 2005 (664)
- October 2005 (682)
- September 2005 (616)
- August 2005 (743)
- July 2005 (716)
- June 2005 (670)
- May 2005 (809)
- April 2005 (830)
- March 2005 (1,020)
- February 2005 (740)
- January 2005 (784)
- December 2004 (873)
- November 2004 (910)
- October 2004 (1,242)
- September 2004 (936)
- August 2004 (911)
- July 2004 (1,101)
- June 2004 (1,026)
- May 2004 (945)
- April 2004 (1,161)
- March 2004 (1,485)
- February 2004 (1,608)
- January 2004 (1,512)
- December 2003 (1,607)
- November 2003 (1,437)
- October 2003 (1,314)
- September 2003 (1,382)
- August 2003 (1,351)
- July 2003 (1,559)
- June 2003 (1,576)
- May 2003 (1,586)
- April 2003 (1,600)
- March 2003 (1,731)
- February 2003 (1,641)
- January 2003 (2,020)
- December 2002 (1,360)
- November 2002 (1,198)
- October 2002 (1,677)
- September 2002 (1,905)
- August 2002 (1,685)
- July 2002 (1,975)
- June 2002 (1,900)
- May 2002 (2,332)
- April 2002 (2,098)
- March 2002 (1,658)
- February 2002 (2,237)
- January 2002 (2,304)
- December 2001 (1,568)
- November 2001 (1,823)
- October 2001 (1,712)
- September 2001 (1,289)
- August 2001 (1,993)
- July 2001 (2,424)
- June 2001 (3,399)
- May 2001 (1,797)
- April 2001 (650)