... encoding (to ... subrouting in the ... There is an escapeHTML() function in CGI.pm but I didn't find a reversal function. As Paul suggests, chr() will...
From: daymobrew@... ... And what will you do if there are some unescaped chars? Use regexp replacement instead: $string =~ s/&\#(\d+);/chr($1)/ge; or...
Is there an equivilent command in perl as the php include function (basically includes another script as if it were a part of the script "including" it) ...
Dustin, Dustin> Is there an equivalent command in perl as Dustin> the php include function (basically includes Dustin> another script as if it were a part of...
Fortuno, Adam
fortunoa@...
Jun 1, 2004 12:46 pm
19039
Hello, friends! Do you need to develop software or website? Post your project for free and get quotes! If you are owner of software company or freelancer this...
Hello, I am looking for most evolved sequences in bacterial genome.one possible case is a string of palindrome. eg) ATGGTTCTAATCTTGGTA (like madam) what could...
Hi all, I recently tried my hand at operator overloading for some classes I have written, so that I can do clever things like: if ( $object1 eq $object2 ) I...
Jeff Eggen
jeggen@...
Jun 1, 2004 10:16 pm
19043
... You missed something. The 'overload' docs mention a 'fallback' method. use overload ( 'eq' => \&test_equals, fallback => 1, ); The explanation in...
... D'oh! I must have read that page about 4 times and it never clicked in. I kept thinking it was only related to the whole deal where overloading <=> and...
Jeff Eggen
jeggen@...
Jun 1, 2004 10:43 pm
19045
Hi, I am running into a problem when it says that the variable is not initialized... http://koiparade.netfirms.com/mailme.html ...
... The script was written to demonstrate a beginning perl program. It will only run when called from the form in the first link above. Calling it directly...
Hello! After 48 hours this new group for posting offshore projects has 80 members. And there are already some messages! If you are company owner or freelancer...
Hi, I am not able to run SSI on apache webserver, perl/ cgi scripts run perfectly but i am not able to run SSI. i am using windows 2000 and have all the ...
Hi Charles, Thanks for quick response. I am just testing the file (this will not go to production, it's much more complicated on the server) and it seems like...
Hi Deepak, Can you stop advertising .....Please? These groups are for learning languages not advertising your products or services. Thanks, DN Deepak Mitra...
Hello Friends, This is Robin here from Spider Systems Pvt. Ltd Pune. We are a part of a global IT company called "IGATE INC". IGATE is a SEI CMM Level 5...
Robin Anthony
softwarejobsatjobcurr...
Jun 3, 2004 10:15 am
19053
... Has the server been restarted to re-read the update httpd.conf? What errors are you getting? Are you seeing the SSI directives instead of them being...
Hi All, We are pioneers in practical software testing training and with our focus on software testing and test automation we are able to provide specialized...
I got two questions, first is there a way to add binary numbers? I mean we got two numbers 01100010 and 11001001 how do we OR, XOR and ADD these binaries....
... With the + operator ... You have to do the conversion of these strings, AFAIK. Without a module, you can do something like: printf("%08b", 0b01100010 &...
... nanambalasi> I got two questions, first is there a way to add binary numbers? nanambalasi> I mean we got two numbers nanambalasi> 01100010 and nanambalasi>...
... j12lee2000> Hello all j12lee2000> my @names=("John", "Peter", "Mary"); j12lee2000> my @ages =(12, 14, 16); j12lee2000> keys is names j12lee2000> How to...
Greetings. I'm trying to figure out how to convert a file that I FTP from a Unix system so that I can read it on a Windows machine. The main problem is that I...
Well, the simplest thing is to transfer the file using FTP's ASCII or 'text' mode, which was designed around 30 years ago to do exactly what you want. ... Q:...
Paul Archer
tigger@...
Jun 4, 2004 12:17 pm
19065
I thought we were using the ASCII option to get the file but that it didn't help the situation. I will have to check. What is the 'text' option? ... or...