Remove any HTML- (Found July 8, 2008 ) This RegExp removes any pure HTML and decoded HTML to filter out content only.http://aspn.activestate.com/ASPN/Cookbook/Rx/Recipe/66459 Checking valid e-mail address in the easy way- (Found July 8, 2008 ) This code Perl snipet is intended to check valid e-mail address, code is easy to understand because composed by step by step regex rather than full one line complicated regex, thus its makes each step may be easily modified as needed. Contact me: tbytebolehmail.comhttp://aspn.activestate.com/ASPN/Cookbook/Rx/Recipe/68432 CDRW Detection under Linux- (Found July 8, 2008 ) A simple yet effective way to parse the output of cdrecord -scanbus and cdrecord -checkdrive to show a list of all devices and what they arehttp://aspn.activestate.com/ASPN/Cookbook/Rx/Recipe/148060 Capture HTML form data into a usable hash... (CGI)- (Found July 8, 2008 ) I developed this technique as an alternative to having to specifically cast name-value pairs into discrete Perl variables within your program. This a technique where you capture all of an HTML form's data into a usable hash at one point in the program. Since the hash is a public variable, the form data is then available throughout your Perl script. Call this subroutine early in your script and the name-value pairs are magically available throughout the script without having to manually...http://aspn.activestate.com/ASPN/Cookbook/Rx/Recipe/167537 Match an IP address- (Found July 8, 2008 ) This regex matches IP addresses in the dotted quad form. It comes courtesy of Jeffrey Friedl's "Mastering Regular Expressions".http://aspn.activestate.com/ASPN/Cookbook/Rx/Recipe/230446 |