[Logic] Contains
Q100113: [Logic] Contains
Module used to control execution based on string value comparison
Parameter | In/Out | Description | Other Info |
---|---|---|---|
Source value | In | Source value of data to search or examine | |
Contains value | In | The data value to search for within the source value | |
Case sensitive | In | Whether or not to do a case sensitive compare | Default: false |
Evaluate as RegEx | In | Whether or not to use a Regular Expression to perform the comparison. If using RegEx, then the RegEx expression should be provided in the 'Contains value' parameter. | Default: false |
Contains step | In | Step to jump to if evaluate value is contained in against value | |
Does not contain step | In | Step to jump to if evaluate value is NOT contained in against value | |
Comparison result | Out | The result of the 'contains' comparison. |
(Italics = required parameters)
Notes
The [Logic] Contains
module allows the comparison of any type of source string value to a known value. The known value can be either a static string, or it can use the power of Regular Expressions
, or RegEx, to look for a pattern within the source value
.
Last Updated:
10/3/2023 1:07:28 AM