Find and Replace in Word Document Action
Find and Replace in Word Document Action searches and replaces one or all of the occurrences of a text with another text within a Word document. It supports replacing the first occurrence or all occurrences, and can optionally clear formatting of the found text before replacing.
Appearance
In Talos, Find and Replace in Word Document Action appears as a standard rectangular node with a magnifying glass and an arrow pointing right icon.

Properties
As all Actions, Find and Replace in Word Document Action has a few unique properties that are essential for its functionality.
Common properties
Common properties inherited from Action.
By customizing this property, you can differentiate between same type of actions.
This property is Read only and it is not customizable
See more about Talos Scripting language & Expressions
This property supports expressions. You can use variable references and string expressions to dynamically resolve the search text at runtime.
Examples
Assuming a declared String variable with name placeholder.
Hello World
${placeholder}
Dear ${placeholder},
[DATE]
See more about Talos Scripting language & Expressions
This property supports expressions. You can use variable references and string expressions to dynamically resolve the replacement text at runtime.
Examples
Assuming a declared String variable with name newValue and a String variable today.
Goodbye World
${newValue}
Dear ${newValue}, as of ${today}