WordFindNext_InZone
Same as the WordFindNext action, except that it searches the current field only.
Syntax
bool WordFindNext_InZone (StrParam)
Parameters
A word or phrase to find in the current field, following a previously found word or phrase. Smart parameters are supported.Returns
True if the parameter is located. Otherwise, False.Level
Field level.Details
The current field will be searched to find the word or phrase, starting from the remembered location of a previous find. The new location of the first word or phrase in the field that matches the parameter will now 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(ItemID) WordFindNext_InZone(Desc)In this example, the WordFind_InZone action looks for the first occurrence of ItemID within the current field, always starting at the first word of the zone. If the phrase ItemID is found, the word Desc will be looked for in the current field, starting after the location of ItemID. If Desc is found, any subsequent actions will operate based on the location of that found phrase.