| Title: | Evaluating Strings |
| Date: | 05/21/04 (3 Posts) |
| Summary: | Given a list of alphanumeric serial numbers, how would you determine whether the last 9 digits of serial numbers with matching 3-digit prefixes are within 5 digits of each other? Find the full code solution here. |
| Title: | XPath Help |
| Date: | 05/21/04 (4 Posts) |
| Summary: | Need help using XPath to access parent/child nodes? Find a tutorial recommendation, along with a brief code snippet explanation. |
| Title: | Extracting an Email Address out of a Text File |
| Date: | 05/21/04 (9 Posts) |
| Summary: | CF_REextract gets the nod for extracting bounced email addresses in various formats from a text file. To get help creating regular expressions, take a look at REwizard, located at the same site. |
| Title: | Retreive the FORM Name? |
| Date: | 05/21/04 (10 Posts) |
| Summary: | When you have multiple forms that submit to the same action page, can you determine which form triggered the submit? Since the form name is not submitted in the FORM structure by default, suggestions include passing a hidden form field with a form name value that's populated by a JavaScript function via the onSubmit event. You could also create multiple action templates or use a single form and respond to the specific form variables that are received on the action page. |