WordFind_InZone
Same as the WordFind action, except that it searches the current field only.
Syntax
bool WordFind_InZone (StrParam)Parameters
A word or phrase to find in the current zoned field. Smart parameters are supported.Returns
True if the word or phrase is located in the field. Otherwise, False.Level
Page or FieldDetails
The current field will be searched to find the word or phrase. The location of the first word or phrase that matches the parameter will be remembered so it can be utilized by subsequent actions. Matching is case sensitive.To improve matching, this action automatically adjusts the search criteria to allow for common character substitutions. For example, if the list includes "will" and the recognition read "wi11", a match will still occur.
Common substitutions include characters: B8, Z2, S5, oO0 and iItl1.
- Example
WordFind_InZone("Sub Total") GoRightWord("1") IsCurrency()In this example, the WordFind action looks for the first occurrence of Sub Total within the current field, always starting at the first word of the zone. If the phrase Sub Total is found, the subsequent actions will operate based on the location of the found phrase.