Regular Expressions 'RegEx' are a fast, powerful and accurate way to be able to identify exactly the text you want to extract from an area of a document. For those with some technical know-how the steps in creating Regular Expressions can be simple, for others it may take a little more time. The......
[open]To set a format validation regex to ensure that users enter a date in the correct format, you can use the regex below. This ensures the format MM/DD/YYYY and also allows for M/D/YYYY REGEX(((0?[1-9]|1[0-2])\/(0?[1-9]|1[0-9]|2[0-9]|3[01])\/\d{4})) The regex below allows for the non-US format......
[open]