FindLastRegEx

Same as the FindLastWord action, except that it supports regular expressions.

Syntax

bool FindLastRegEx (StrParam)

Parameters

A word or phrase to find on the current page. The parameter is expected to be a Regular Expression. Smart parameters are supported.

Returns

True if the word or phrase is located on the page. Otherwise, False.

Level

Page level.

Details

Locates the last occurrence of a word or phrase on the current page where the input search term is specified as a regular expression. The search is started from the first word of the current page. 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("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.