MergeWordLF

Merges the located word with one or more words to the left, on the same line.

Syntax

bool MergeWordLF (StrParam)

Parameters

An integer that indicates the number of words or phrases to the left of the previously found field that is to be placed into the current object field. Smart parameters are supported.

Returns

Always True.

Level

Page or field level.

Details

Merges the located word or phrase with one or more words to the left, on the same line. A "word" in this context is a string of characters that might include spaces. This action is used when the value searched for might have spaces in it. Regardless of being called at the page or field level, this action operates on the recognized text for the current page.
Example
WordFind("2000")
MergeWordLF("1")UpdateField()

Given the following cco string:
Invoice Date: Jan 2000

FindWord("2000") locates the highlighted value:
Invoice Date: Jan 2000

MergeWordLF("1") consolidates it with the text "Jan":
Invoice Date: Jan 2000

so that the UpdateField action will save the entire value, 
"Jan 2000" into the current object's field.