RegExFindNext_InZone

Same as the RegExFindNext action, except that it searches the current field only.

Syntax

bool RegExFindNext_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 on the page. Otherwise, False.

Level

Page level.

Details

Starting from the location of a previously found word or phrase, this action locates the first 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 location of a previously found word or phrase in 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
RegExFind_InZone("ItemID")
RegExFindNext_InZone("Desc")     

In this sequence, the first action looks for ItemID. If the search succeeded, RegExFindNext looks for the first occurrence of Desc that comes after ItemID.