FindLastRegEx_InZone
Same as the FindLastWord_InZone action, except that it supports regular expressions.
Syntax
bool FindLastRegEx_InZone (StrParam)
Parameters
A word or phrase to find in the current field. The parameter is expected to be a Regular Expression. Smart parameters are supported.Returns
True if the word or phrase is located in the field. Otherwise, False.Level
Field level.Details
Locates the last occurrence of a word or phrase in the current field where the input search term is specified as a regular expression. The search is started from the first word of the current field. The location of the found word or phrase will be remembered so the result can be used by subsequent actions. The search is case sensitive.- Example
FindLastRegEx_InZone("Da?e") GoRightWord("1") IsDateValue() UpdateField()FindLastRegEx will look for the last occurrence of a word that matches the regular expression. If it match is found, it will continue processing by moving one word right to the result of RegExFind and act on that word. In this example, if it is a date format, UpdateField will place the value into the current field.