| Thread | Last Post | Replies |
|
| Embedding Perl in C: Replacing some subroutine in Perl from C | 16 Jul 2008 23:00 GMT | 5 |
I have trouble with embedding Perl in C. I would like to replace some subroutine (exactly it is print function) in Perl script without changing this script. #include <EXTERN.h>
|
| Printing special characters | 16 Jul 2008 17:15 GMT | 3 |
I need to print the COPYRIGHT symbol. How to go about it? Tried playing with the following: my $text; $text = chr(hex(0xa9));
|
| need help on map function | 16 Jul 2008 16:39 GMT | 4 |
Can anyone tell me why the map will not map out the unitialized variable in this code with 'str'? Thanks a lot, use strict; use warnings;
|
| One step substitution | 16 Jul 2008 16:15 GMT | 6 |
I am trying to build a hash(ref) and while doing so I want to remove any white space from strings such as "1280 x 1024". So I have my $record = { contributor => $resolution,
|
| combo boxes + Perl | 16 Jul 2008 14:30 GMT | 3 |
HI... I have two combo boxes in which the first one is used for choosing the Regions and the second one is for the corresponding countries. I would like to do this with Perl and html without importation any modules
|
| pack and fcntl question | 16 Jul 2008 13:38 GMT | 1 |
Hello List, I am new to perl. I run following sample script, and see strace output. I have 2 questions.
|
| what is wrong w/ this program? (getting undefined value.. but I don't understand) please help | 16 Jul 2008 04:25 GMT | 3 |
what is wrong w/ below program??? use warnings; use strict; use diagnostics;
|
| template loop problem | 15 Jul 2008 22:04 GMT | 3 |
Hi all, I'm tryin to do something simple. The output I want needs to be in a table, for example: <table> <tr> <td>Euros</td><td>dollars</td>
|
| rename files in directory - help | 15 Jul 2008 11:48 GMT | 2 |
I put togather few lines of code, I am looking to achieve the below dir1 with file1, file2 dir2 with file1, file2 i want to copy the files from each of the directory to a third directory
|
| PDF::API2, error "Can't call method "val".... when adding a picture to the PDF | 15 Jul 2008 08:51 GMT | 1 |
I am not sure what is going on. It works, then it does not? Is there a solution for this? I have been able to find little to NO doc on this. use strict;
|
| Passing Variables to Perl through HTTP | 15 Jul 2008 03:58 GMT | 4 |
Hi, Guys: This may be a very dumb question, but I am having the problem of putting the variables on the url through Perl to get it to execute the following mkdir command. #!/usr/bin/perl -w use CGI qw(:standard -debug);
|
| gmail | 14 Jul 2008 22:21 GMT | 1 |
Is it possible to access gmail from perl? If so, how would you go about it? Thanks, Jerry
|
| constant in regular expression | 14 Jul 2008 20:37 GMT | 2 |
Hello, what is the syntax for having constant in regular expression ? Such as use constant (NL => '\n'); #check if there is newline in the text my $txt = "foo \n bar";
|
| uninstalling perl | 14 Jul 2008 19:25 GMT | 3 |
Dear list If I want to remove perl from my linux/unix machine then what is the procedure for this? Thanks & Regards in advance
|
| fetching encrypted passwords for oracle username in Perl ! | 14 Jul 2008 18:28 GMT | 3 |
Instead of hard-coded passwords in my source code or an input file, I would like to enable some sort of encryption through some keys for all the usernames in Oracle 10g. Please let me know how to do that with Perl DBI ?
|