| Thread | Last Post | Replies |
|
| Regular Expressions with Incremented Variable Embedded | 31 May 2009 12:17 GMT | 3 |
I am using regular expressions to alter a text file. Where my original file has three spaces to start a paragraph, I want to replace each instance of three spaces with a bracketed paragraph number, with a counter for paragraph numbers, <pgf 1>, <pgf 2>, <pgf 3> etc. The PERL ...
|
| More custom sorting | 29 May 2009 17:27 GMT | 3 |
Let's say I have a bunch of lines of data in an array, @a: car 72 car 55 truck 31
|
| List of perl functions that work on LINUX & not in Windows | 29 May 2009 12:51 GMT | 2 |
Kindly provide a list of perl functions that work on LINUX but not on windows. Also provide the list of functions that behave differently on Windows & LINUX. This not project requirement. I just want to explore the functions on LINUX. So far I have been using ActiveState Perl on ...
|
| Range Operator Question | 29 May 2009 10:29 GMT | 5 |
I came across this statement about 'range' operators somewhere. There is very little difference between $x..$y and $x...$y, and if the second operand is a constant then they are identical. What is the difference? Kindly explain with example.
|
| readdir() question | 29 May 2009 05:58 GMT | 2 |
Kindly look at the code below: use warnings; use strict; opendir(DIR, "D:\\test") || die "can't opendir: $!";
|
| Parsing TXT document and output to XML | 28 May 2009 20:50 GMT | 2 |
List, I've been working on a method to parse a PDF or TXT document and output the results to XML over at Experts Exchange. http://www.experts-exchange.com/Programming/Languages/Scripting/Perl/Q_24439630.html
|
| intermediate perl list??? | 28 May 2009 17:53 GMT | 3 |
Hi, perl peeps, Does anybody know of a good intermediate or maybe even advanced general perl list I could subscribe to? Thanks,
|
| Kindly explain special variable $| | 28 May 2009 13:28 GMT | 3 |
Perldoc for $| is as below: 1. If set to nonzero, forces a flush right away and after every write or print on the currently selected output channel. Default is 0 (regardless of whether the channel is really buffered by the system or not; $| tells you
|
| suppressing Use of uninitialized value in pattern match (m//) | 28 May 2009 09:27 GMT | 2 |
How can I suppress the first "Use of uninitialized value in pattern match (m//)" warning message. code and output are below. ---- code ---- # cat ./fix_archive.pl
|
| How to append to existing excel sheet? | 27 May 2009 17:26 GMT | 3 |
Is there any method to append a row to an existing Excel file? Can I do it using the Spreadsheet::WriteExcel module? Looking forward to hear from you. Regards,
|
| skipping a repeated header | 27 May 2009 17:12 GMT | 3 |
I have a large datafile that I am trying to read into a postgresql database. I think I have the db_connect stuff down, but I'm fighting with the part that reads the file to be processed. The file contains a repeating structure of header lines like this:
|
| Pattern match question | 27 May 2009 16:20 GMT | 2 |
Hi, All: I want to parse data from a HTML page, data like: <tr > <td valign="top">
|
| interaction with a module and http tags | 27 May 2009 14:30 GMT | 8 |
i've created a module, part of which creates the beginning of a web page. the module overall works fine. the sub in question even works fine, except for one point. here's the sub in the module: sub html_start
|
| variables gets shared to child but resets back after exiting fork | 27 May 2009 13:18 GMT | 3 |
I have to run an external program but the program does not termination on some conditions, e.g, ping, will not exit unless you specify -c or some other circumstances. Now I what I want to do is: my @array; die "Cannot fork myprog" unless (defined my $pid = fork)
|
| Question about split | 27 May 2009 12:34 GMT | 2 |
Kindly look at the code below: use warnings; use strict; $_ = 'Welcome to openSUSE 11.0 (X86-64) - Kernel \r (\l).';
|