WordSearch

Description

This activity perform a search of a text or a regular expression into a Word document.


File

File InArgument<IFileValue> REQUIRED

The Word file where to perform the search.


Misc


Search By Regex

RegexOptions RegexOptions

The options for the search by regex. It must have a value only when RegexToFind is used.

RegexToFind InArgument<String>

The reguler expression to search. RegexToFind is an alternative to TTextToSearch so they cannot be used at the same time


Search By Text

TextSearchCaseInsensitive InArgument<Boolean>

Default: false. If it is set to true the word search will be case sensitive.

TextToFind InArgument<String>

The text to be searched in the specified file. TextToFind is an alternative to RegexToFind so they cannot be used at the same time.