<div><br clear="all">Hi Folks,</div>
<div>&nbsp;</div>
<div>&nbsp;</div>
<div>I dont know much about Regular Expressions. But I just want to share my ideas.</div>
<div>&nbsp;</div>
<div>I was trying to implement error checking code on the date argument:</div>
<div>&nbsp;</div>
<div>I did this:&nbsp;&nbsp;</div>
<div>&nbsp;</div>
<div>import re</div>
<div># the user should enter date in the format: dd/mm/yyyy</div>
<div>p = re.compile('\d\d/\d\d/\d\d\d\d')</div>
<div>&nbsp;</div>
<div>m = p.match(date)</div>
<div>&nbsp;</div>
<div>the function match will return an object of type SRE_Match only if the user has supplied the string in the form of dd/mm/yyyy. If the user tries to supply negative values, then match will return None.</div>
<div>So no hassle of using all those Ifs&nbsp; and Elifs........</div>
<div>I think REGULAR Expressions can be quite powerful...</div>
<div>&nbsp;</div>
<div>Regards,</div>
<div>Asrarahmed<br>-- <br>To HIM you shall return. </div>