Appendix A - Known Regular Expression Setups
Application - Laser App
String being matched: “Laser App Enterprise - 9.9.9.107 DE [Ben Franklin] - [SAMPLE FORM : Sample
Form]”
Regular expression: “(?<=\[)\w+ \w+(?=\])”
Data Extracted: “Ben Franklin”
Application - Aria
String being matched: “Notes-Davis, Jesse J – 152268”
Regular expression: “(\w+, \w+ \w?)”
Data Extracted: “Davis, Jesse J”
Application – Access App - will not work with all Access Apps.
String being matched: “Contact Log Version 2.4 - WX0026982 ALBERTA SMITH“
Regular expression: “(?<=- )[a-zA-Z0-9]+”
Data Extracted: “WX0026982”
Application – NextGen EMR
String being matched: “NextGen EMR: Jones, Fred - [09/05/2008 10:04 AM:"eyemaster im"]“
Regular expression: “(?<=\: )[a-zA-Z0-9 /,]+(?= -)”
Data Extracted: “Jones, Fred”
Application – Gorilla Bill Good Marketing
String being matched: “NextGen Gorilla 3.0 [Playground] [Info Sheet: Ferry, John]“
Regular expression: “(?<=: )[a-zA-Z0-9, ]+(?=])”
Data Extracted: “Ferry, John”
Comments
Article is closed for comments.