Home > Domino Tips > > How to create a forgiving Notes/Domino date parser with Formula language
Domino Tips:
EMAIL THIS
 TIPS & NEWSLETTERS TOPICS 


How to create a forgiving Notes/Domino date parser with Formula language


Mick Crowder
08.29.2006
Rating: -4.00- (out of 5)


Lotus Notes and Domino tips, tutorials and how-to articles
Digg This!    StumbleUpon Toolbar StumbleUpon    Bookmark with Delicious Del.icio.us    Add to Google


The Formula language script below is a very forgiving Notes/Domino date parser that will allow you to enter dates formatted like "Jul. 18, 2006" without generating errors.

 REM  "This should be a formula for a 
date/time field and be computed."; 
REM  "input_field is a text field on the same form"; 
REM "If input_field is blank by default, this 
formula yields @ERROR when the document is open."; 
REM "If it only finds two "words" e.g. Nov. 90  
or 12/12 it tries to decide whether you meant a"; 
REM "year or a day.  The error checking is weak , 
but @Date will only take legal ones ..."; 
tmp := @Replace(@LowerCase
(input_field); "," : "." : "-" : "/"; " ");
list1 := @Implode(@Explode(tmp; "-"));
list := @Implode(@Explode(list1; "/"));
month := @Word(list; " "; 1);
day := @TextToNumber(@Word(list; " "; 2));
w3 := @Word(list; " "; 3);
y1 := @If(w3 = ""; @Year(@Today); 
@TextToNumber(w3));
y2 := @If(y1 < 100; y1 + 1900; y1);
month_table := @Explode("jan feb mar 
apr may jun jul aug sep oct nov dec"); 
m := @If(@Matches(month; "*{a-z}*");
                   @Member(@Left(month; 3); 
month_table); @TextToNumber(month)); 
y := @If(w3 = "" & day > 31; @If
(day < 100; day + 1900; day); y2); 
d := @If(w3 = "" & day > 31; 1; day); 
@If(d > 31 | d < 1 | m < 1 | m 
> 12 | y < 1; @ERROR; @Date(y; m; d))

Do you have comments on this tip? Let us know.

This tip was submitted to the SearchDomino.com tip library by member Mick Crowder. Please let others know how useful it is via the rating scale below. Do you have a useful Lotus Notes, Domino, Workplace or WebSphere tip or code snippet to share? Submit it to our monthly tip contest and you could win a prize.

Rate this Tip
To rate tips, you must be a member of SearchDomino.com.
Register now to start rating these tips. Log in if you are already a member.




Digg This!    StumbleUpon Toolbar StumbleUpon    Bookmark with Delicious Del.icio.us    Add to Google



RELATED CONTENT
Lotus Notes Domino Formula Language
View hidden fields on Lotus Notes/Domino forms
Case-insensitive @Unique version combines fields on Lotus Notes forms
Do I use Formula or LotusScript to include a doclink to a Notes view?
Top 10 Lotus Notes/Domino coding and development tips of 2008
Provide rich-text formatting via the Profile document and Formula
Top 10 Formula language tips
Using Formula language code to sort Lotus Notes messages by subject
How to create dynamic JavaScript in Notes Domino without formulas
Stop response documents from showing in a Lotus Notes form
Formula language button manages Deny Access list searches

RELATED RESOURCES
2020software.com, trial software downloads for accounting software, ERP software, CRM software and business software systems
Search Bitpipe.com for the latest white papers and business webcasts
Whatis.com, the online computer dictionary

DISCLAIMER: Our Tips Exchange is a forum for you to share technical advice and expertise with your peers and to learn from other enterprise IT professionals. TechTarget provides the infrastructure to facilitate this sharing of information. However, we cannot guarantee the accuracy or validity of the material submitted. You agree that your use of the Ask The Expert services and your reliance on any questions, answers, information or other materials received through this Web site is at your own risk.



Domino & Lotus Notes Security Solutions: Authentication, Antispam, Encryption and Antivirus
HomeTopicsITKnowledge ExchangeTipsAsk the ExpertsMultimediaWhite PapersDomino IT Downloads
About Us  |  Contact Us  |  For Advertisers  |  For Business Partners  |  Site Index  |  RSS
SEARCH 
TechTarget provides technology professionals with the information they need to perform their jobs - from developing strategy, to making cost-effective purchase decisions and managing their organizations' technology projects - with its network of technology-specific websites, events and online magazines.

TechTarget Corporate Web Site  |  Media Kits  |  Site Map




All Rights Reserved, Copyright 1999 - 2009, TechTarget | Read our Privacy Policy
  TechTarget - The IT Media ROI Experts