<?xml version="1.0"?>
<!DOCTYPE rss PUBLIC "-//Netscape Communications//DTD RSS 0.91//EN" "http://my.netscape.com/publish/formats/rss-0.91.dtd" >  
<rss version="0.91">

  <channel>
    <title>Recipes from the Rx Cookbook</title>
    <language>en-us</language>
    <link>http://www.ActiveState.com/ASPN</link>
    <copyright>Copyright 2001, ActiveState SRL.</copyright>
    <webMaster>aspn-feedback@ActiveState.com</webMaster>

  <image>
    <title>ASPN: ActiveState Programmers Network</title>
    <url>http://www.activestate.com/img/logo_115x35.gif</url>
    <link>http://www.ActiveState.com/ASPN</link>
    <width>115</width>
    <height>35</height>
  </image>

  
  

    <item><link>http://aspn.activestate.com/ASPN/Cookbook/Rx/Recipe/521872</link>
</item>
<item><title>This cookbook is a  &quot;failed experiment&quot;</title>
<description>Dont loose your time writing here&#58;

&#34;I don&#39;t think ActiveState currently is in a position where we want to  
put new resources into making the RX cookbook work&#46;  I encourage you  
to restart this project at some other website if you think it has any  
merit&#46;&#34;
&#34;the RX cookbook has not been maintained&#46;  I consider it mostly a failed experiment&#46;&#34;
Sayd Gisle&#44; the Editor of this page&#46;


</description>
<link>http://aspn.activestate.com/ASPN/Cookbook/Rx/Recipe/521864</link>
</item>
<item><title>Introduction to Threading In Perl By Rohit D'souza</title>
<description>This article is a introduction on threads in perl</description>
<link>http://aspn.activestate.com/ASPN/Cookbook/Rx/Recipe/511504</link>
</item>
<item><title>   	

Random Password Generator By Rohit D'souza </title>
<description> Its help to generate Unique 10 character password on every reload of the page</description>
<link>http://aspn.activestate.com/ASPN/Cookbook/Rx/Recipe/496680</link>
</item>
<item><title>Flexible Random Password Generation </title>
<description>This script can generate a random password between a certain minimum and maximum length&#46;
</description>
<link>http://aspn.activestate.com/ASPN/Cookbook/Rx/Recipe/496756</link>
</item>
<item><title> Multi Dimesional Array Program Code in Perl By Rohit D'souza</title>
<description>it helps u learn how to create multidimesional arrays in perl using array references and then how to print the values of that array</description>
<link>http://aspn.activestate.com/ASPN/Cookbook/Rx/Recipe/496679</link>
</item>
<item><link>http://aspn.activestate.com/ASPN/Cookbook/Rx/Recipe/435879</link>
</item>
<item><title>Finding Palindromes</title>
<description>Use this reqular expression to find palindromes&#44; sentences or words which are the same written backwards and forwards&#46;</description>
<link>http://aspn.activestate.com/ASPN/Cookbook/Rx/Recipe/326097</link>
</item>
<item><title>buffgrep</title>
<description>Buffgrep is a grep&#45;like utility that operates on text blocks&#44; rather than on single lines as in the regular grep case&#46;</description>
<link>http://aspn.activestate.com/ASPN/Cookbook/Rx/Recipe/252499</link>
</item>
<item><title>Match an IP address</title>
<description>This regex matches IP addresses in the dotted quad form&#46; It comes courtesy of Jeffrey Friedl&#39;s &#34;Mastering Regular Expressions&#34;&#46;</description>
<link>http://aspn.activestate.com/ASPN/Cookbook/Rx/Recipe/230446</link>
</item>
<item><title>use</title>
<link>http://aspn.activestate.com/ASPN/Cookbook/Rx/Recipe/202233</link>
</item>
<item><title>Capture HTML form data into a usable hash... (CGI)</title>
<description>I developed this technique as an alternative to having to specifically cast name&#45;value pairs into discrete Perl variables within your program&#46; 

This a technique where you capture all of an HTML form&#39;s data into a usable hash at one point in the program&#46; Since the hash is a public variable&#44; the form data is then available throughout your Perl script&#46;  Call this subroutine early in your script and the name&#45;value pairs are magically available throughout the  script without having to manually declare a Perl variable and get each and every value from the form&#39;s query string&#46; 

Not using a database but want to save the form &#63; Pipe the hash into an open DBM file&#46;&#46;&#46; 

Need to set the values of form fields &#63; You can assign to the &#36;PARAMS hash &#36;PARAMS&#123;NEWVALUE&#125; &#61; &#34;Cool trick&#46;&#34;&#59;

Need to do a database INSERT &#63; Embed the hash elements directly into your SQL construct and let &#36;SQL&#45;&#62;prepare&#40;&#36;SQLSTMT&#41; take care of it&#46;&#46;

BTW&#58; The &#36;MSG variable is a little trick you can use to display what the form actually submitted to your Perl script&#46;&#46;&#46; At any point &#47; time in your program&#44; AFTER getFormData&#40;&#41; has been called&#44; you can simply issue a 

	print &#34;&#36;MSG&#34;&#59; &#35; FORM TRACE&#46;&#46;&#46;

to see all of the form fields and the name value pairs that were submitted&#46;
</description>
<link>http://aspn.activestate.com/ASPN/Cookbook/Rx/Recipe/167537</link>
</item>
<item><title>test</title>
<description>test</description>
<link>http://aspn.activestate.com/ASPN/Cookbook/Rx/Recipe/151505</link>
</item>
<item><title>CDRW Detection under Linux</title>
<description>A simple yet effective way to parse the output of
cdrecord &#45;scanbus and cdrecord &#45;checkdrive to 
show a list of all devices and what they are</description>
<link>http://aspn.activestate.com/ASPN/Cookbook/Rx/Recipe/148060</link>
</item>
<item><link>http://aspn.activestate.com/ASPN/Cookbook/Rx/Recipe/117235</link>
</item>
<item><title>\d</title>
<link>http://aspn.activestate.com/ASPN/Cookbook/Rx/Recipe/109366</link>
</item>
<item><title>Checking valid e-mail address in the easy way</title>
<description>This code Perl snipet is intended to check valid e&#45;mail address&#44; code is easy to understand because composed by step by step regex rather than full one line complicated regex&#44; thus its makes each step may be easily modified as needed&#46;

Contact me&#58; tbyte&#64;bolehmail&#46;com</description>
<link>http://aspn.activestate.com/ASPN/Cookbook/Rx/Recipe/68432</link>
</item>
<item><title>Remove any HTML</title>
<description>This RegExp removes any pure HTML and decoded HTML to filter out content only&#46;</description>
<link>http://aspn.activestate.com/ASPN/Cookbook/Rx/Recipe/66459</link>
</item>
<item><title>Validating email addresses with Mail::CheckUser</title>
<description>The only way to really know whether an email address is valid is to try
sending mail to it&#46; i&#46;e&#46;&#44; no simple regular expression exists which can
verify the correctness of any given email address&#46; The Mail&#58;&#58;CheckUser
module &#40;available on CPAN&#41; verifies that a particular email address is valid
by first checking the syntax of the email address&#44; then checking whether an
email server exists for that address&#44; and finally contacting that email
server to verify that the given address exists&#46;</description>
<link>http://aspn.activestate.com/ASPN/Cookbook/Rx/Recipe/65255</link>
</item>

  
</channel>
</rss>