Navigation Home / Tags / Perl

ranking Sort Sort   |   date Sort Sort   |   member Sort Sort
Syndication

« Previous 1 2 Next »
0
Date Submitted Sat. Mar. 8th, 2008 3:54 PM
Revision 1
Beginner chorny
Tags MD5 | Perl
Comments 0 comments
Digest::MD5 is core from 5.8.
0
Date Submitted Sat. Mar. 8th, 2008 1:41 PM
Revision 1
Beginner chorny
Tags find | Grep | Perl
Comments 0 comments
Usage:
found('asdf',@array);

P.S. In perl 5.10 can be written as
use 5.010;
'asdf'~~@array;
7
Date Submitted Mon. Nov. 6th, 2006 1:48 PM
Revision 1
Helper RobHarrigan
Tags "first | "title | capitalize | case" | letter" | Perl
Comments 3 comments
Function to capitalize the first letter in every word in a string, but only if the entire string is in ALL CAPS.

Example:
"I LIKE TO SCREAM" becomes "I Like To Scream"
"I LIKE to RUN" remains "I LIKE to RUN".
5
Date Submitted Fri. Nov. 3rd, 2006 12:07 PM
Revision 1
Helper jarfil
Tags "Command Line" | Perl
Comments 2 comments
I've found it kind of complicated to strip newline chars from a file with just the commandline. This tiny piece of code does just that.

I've found it especially useful when extracting tabulated data from a grabbed site where each cell is on a different html line. This way I can pre-filter the html, remove the newlines, and insert them again at register boundaries (row end in this case), so that with just a couple more replacement from within a regex enabled text editor I can copy&paste it directly to a database.
0
Date Submitted Mon. Oct. 9th, 2006 1:14 PM
Revision 1
Beginner robert
Tags "record time" | day | hour | localtime | minute | Perl
Comments 3 comments
This perl function will output to a file of your choosing the current localtime as defined by perl's localtime function. It will output the date in ISO 8601 date format plus the current localtime such as:
2006-08-21 09:26:35 am
The function also returns the localtime without the date to the calling environment.
6
Date Submitted Thu. Aug. 31st, 2006 8:44 AM
Revision 1
Scripter ctiggerf
Tags API | Database | mysql | Perl
Comments 3 comments
A database API written in Perl for a MySQL.

You will need to edit the settings for your server.

Enojy
12
Date Submitted Thu. Aug. 31st, 2006 8:09 AM
Revision 1
Scripter ctiggerf
Tags Perl
Comments 1 comments
A little function that returns a greeting based on the local time.
5
Date Submitted Thu. Aug. 31st, 2006 7:58 AM
Revision 1
Scripter ctiggerf
Tags Email | Perl | RegExp | Validate
Comments 3 comments
Simple function to check for a valid email address. Makes sure the @ and a . are in the right place. There is most likely a perl package on CPAN that would be more extensive, but this happens to work for my uses.
-1
Date Submitted Thu. Aug. 31st, 2006 7:43 AM
Revision 1
Scripter ctiggerf
Tags Email | Perl | RegExp
Comments 0 comments
Just a simple check to make sure that a person's email address matches their domain.

For example .. in a form you have 2 textboxs .. 1 for their website url, the other for their email address. This checks to see if the domains for the email address and the website url match.
9
Date Submitted Thu. Aug. 10th, 2006 2:02 PM
Revision 1
Beginner sio2man
Tags Perl | Threads
Comments 0 comments
This is a little example of how to use threads in Perl. It creates three threads and runs them... That's it...
« Previous 1 2 Next »