RegexMatch

Estimated reading: 2 minutes 1331 views

 This activity helps the user to find matches in a given input string using a specified regular expression (regex) pattern. 

Properties

INPUT

Compiled: This parameter specifies to enable pre-compiling the regex for faster execution. Check this box if performance optimization is required for repeated matches.

CultureInvariant: This parameter specifies to check this box that ensures to ignore cultural differences in string comparison. 

EcmaScript: This parameter specifies to check this box if your pattern relies on ECMAScript standards for the regex. 

ExplicitCapture: This parameter specifies to enable this option that limits the capture to explicitly named groups. 

IgnoreCase: This parameter specifies to check this box to match text without considering case differences.

IgnorePatternWhitespace: Check this parameter to ignore pattern whitespace and allows comments in the regex pattern for better readability. 

InputString: *This parameter specifies to provide the input text to be matched using the regex. It accepts values in “String” datatype.

Multiline: Check this parameter if the specified input is multi-line text and this option allows ^ and $ to match the start and end of each line. 

RegexPattern: *This parameter specifies to provide the regex pattern for matching the values from the input string. It accepts the values in “String” datatype. 

RightToLeft: Check this parameter to search for the matches from right to left order.

Singleline: Check this parameter when the input needs to be treated as a single line, where it matches every character including newline. 

MISC

DisplayName: Displays the name of the activity. The activity name can be customized, which aids in troubleshooting.

SkipOnError: Specify the “Boolean” value as “True” or “False.”
True: Continue executing the workflow regardless of any errors thrown.
False: Halt the workflow if it encounters any errors.
None: If the option is left blank, the activity will, by default, behave as if “False” were chosen.

Version: It indicates the version of the feature being used.

OUTPUT

Matches: *It helps to return the list of matches retrieved from the provided input string.  

Result: This parameter allows you to view the execution status of the activity and returns a value in “Boolean.”
True: Indicates that the activity has been executed successfully without any errors.
False: Indicates that the activity has been unsuccessful due to an unexpected error being thrown.

* Represents mandatory fields to execute the workflow.

Share this Doc

RegexMatch

Or copy link

CONTENTS