Advanced ETL Processor is able to check any data, for exampe date formats, post codes, phone numbers etc. It is also possible to write your own Regular expressions


Regular expression is a string that is used to describe or match a set of strings, according to certain syntax rules. Regular expressions are used by many text editors, utilities, and programming languages to search and manipulate text based on patterns. For example, Perl and Tcl have a powerful regular expression engine built directly into their syntax. Several utilities provided by Unix distributions—including the editor ed and the filter grep—were the first to popularize the concept of regular expressions.
"Regular expression" is often shortened to regex or regexp (singular), or regexes, regexps, or regexen (plural). Some authors distinguish between regular expression and abbreviated forms such as regex, restricting the former to true regular expressions, which describe regular languages, while using the latter for any regular expression-like pattern, including those that describe languages that are not regular. As only some authors observe this distinction, it is not safe to rely upon it. As an example of the syntax, the regular expression \bex can be used to search for all instances of the string "ex" that occur at word boundaries (signified by the \b). Thus in the string, "Texts for experts," \bex matches the "ex" in "experts," but not in "Texts" (because the "ex" occurs inside the word there and not immediately after a word boundary).
| Image | Data Validation Function | Description |
![]() |
Is Date | Checks if the data is a Date |
![]() |
Is Date Between | Checks if the data is a Date between two values |
![]() |
Is Date Less Than | Checks if the data is a Date less than value |
![]() |
Is Date More Than | Checks if the data is a Date more than value |
![]() |
Is Monday, Is Tuesday, Is Wednesday, Is Thursday, Is Friday, Is Saturday, Is Sunday, Is Today, Is Yesterday, Is Tomorrow, Is Weekend, Is Weekday | Checks if the data is a Date value which belongs to specific day of week |
![]() |
Is January, Is February, Is March, Is April, Is May, Is June, Is July, Is August, Is September, Is October, Is November, Is December, Is Current Month, Is Last Month, Is Next Month | Checks if the data is a Date value which belongs to specific month of a year |
![]() |
Is 1st Quarter, Is 2nd Quarter, Is 3rd Quarter, Is 4th Quarter, Is Current Quarter,Is Last Quarter, Is Next Quarter | Checks if the data is a Date value which belongs to specific quarter of a year |
![]() |
Is Leap Year, Is Current Year, Is Last Year, Is Next Year | Checks if the data is a Date value which belongs to specific year |
![]() |
Is Current Week, Is Last Week, Is Next Week | Checks if the data is a Date value which belongs to specific week |
![]() |
Is Within Past Minutes, Is Within Past Hours, Is Within Past Days, Is Within Past Weeks, Is Within Past Months | Checks if the data is a Date value within in past minutes etc. |
| Image | Data Validation Function | Description |
![]() |
Is Number | Checks if the data is a Number |
![]() |
Is Integer | Checks if the data is an Integer |
![]() |
Is Positive | Checks if the data is a Positive Number |
![]() |
Is Negative | Checks if the data is a Negative Number |
![]() |
Is Number Between | Checks if the data is a number between two values |
![]() |
Is Number Less Than | Checks if the data is a number less than value |
![]() |
Is Number More Than | Checks if the data is a number more than value |
![]() |
|
|
|
|
![]() |