| Thread | Last Post | Replies |
|
| Pipe print output into shell in debugger | 28 Jul 2008 08:21 GMT | 2 |
while being in the debugger, how do I pipe all printings going to a OUTputfile like: print OUT "text text text"; into the shell?
|
| List with qw and without | 26 Jul 2008 13:26 GMT | 1 |
package MyConfig; use constant (DOCUMENT_ROOT => "/var/www/"); require Exporter; our @ISA = qw(Exporter);
|
| XS | 26 Jul 2008 00:07 GMT | 4 |
I am trying to pass a array of references on array to a c subroutine: my @set_2d = ([0.0, 1.0], [1.1, 2.2], [3.1, 4.4]) ; test::test(\@set_2d) ; in xs I put:
|
| edit a file cause unexpected execution | 25 Jul 2008 20:56 GMT | 4 |
Hello, I am editing the WordNet http://wordnet.princeton.edu/ dictionary files to add my own words into it. The database file of WordNet look like normal text file and I am editing it with vim, but whenever I add a word it causes the perl "seek" function to work incorrecly.
|
| Replacement using variable | 25 Jul 2008 19:43 GMT | 2 |
Any one suggest me, what is the error in my below code, Not any error when run, But unable to get the search value in replacement. $content=~s/<$allelm/"<\1 xml:id=".$idseq++/egsi; Here $allelm contains element list, (para|quote|list).
|
| XS help | 25 Jul 2008 15:43 GMT | 1 |
I'm trying to call C routine from Perl using XS but some how my 'make test' is failing. Following are the steps I did : file: hypotenuse.h double hypotenuse(double x, double y); /* Func Declaration */
|
| System Call Help | 25 Jul 2008 14:29 GMT | 2 |
Greets Guys Trying to Make a system from perl to use the sort. # @args = ('c:\windows\system32\sort.exe "C\logs\"'); # system(@args) == 0
|
| Use of uninitialized value in concatenation (.) or string | 25 Jul 2008 10:00 GMT | 1 |
Dear Friends, Following error i am getting while its functioning. Could you please help me to find out what the error is ? Use of uninitialized value in concatenation (.) or string at /xxx.pl line 18, <STDIN> line 1. Use of uninitialized value in concatenation (.) or string at /xxx ...
|
| searching keys | 24 Jul 2008 20:49 GMT | 8 |
I loaded a bunch of configuration lines into a hash called $Input now I am searching the hash to make sure specific lines are there. I want to print "NO" unless there is a match to the following ""check $ip here";
|
| perl2exe | 24 Jul 2008 17:47 GMT | 3 |
I am using perl2exe (Oct 27, 2001) and it works fine for little script without several .pm and it does good binary conversion. I am working without any install of perl8.8 or 10. Now I want to include Win32::process which includes others
|
| Kicking off a perl script with alternate credentials | 24 Jul 2008 16:54 GMT | 1 |
I've got a script that, given certain conditions, may need to kick off another perl script as another user (for which I have the username and password). Is this possible? I can't find any information on it searching online and have limited documentation available to me.
|
| regex help | 24 Jul 2008 15:04 GMT | 1 |
I have a text dump of a postgresql database and I want to find out if there are any characters that are not standard keyboard characters. Is there a way to use regex to do this without doing a character by character scan of a 5GB file. I want to know where any character that is not ...
|
| Difference between "=>" and ">=" in Perl ! | 24 Jul 2008 14:32 GMT | 2 |
I could be a very basic question but I am unable to find any answers on internet. What's the difference between "=>" and ">=" in Perl ? To the best of my knowledge, ">=" means greater than or equal to and "=>" is
|
| XML::Simple Environment errors | 24 Jul 2008 12:14 GMT | 1 |
We recently migrated over to a new server and installed the new version of XML::Simple and am getting errors when I try to parse an XML file. I get an error stating: XMLin() requires either XML::SAX or XML::Parser
|
| Request for advice/suggestions.... | 24 Jul 2008 10:37 GMT | 3 |
I'm very new with PERL and have been given a task of doing some maint. on an existing really big PERL program. What I'd like to ask is if the changes I want to implement will work and ask for suggestions on how to make one
|