RegExFind_InZone
Same as the RegExFind action, except that it searches the current field only.
Syntax
bool RegExFind_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 current field. Otherwise, False.Level
Field level.Details
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 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
RegExFind_InZone("Da?e")GoRightWord("1") IsDateValue() UpdateField()RegExFind_InZone will look for the first occurrence of a word or phrase that matches the regular expression. If a match is found, it will continue processing by moving one word right of the result of RegExFind and act on that word. If it is a date format, UpdateField places the value into the current field.