Apply Regex

Applies Regular expression.

This activity applies a regular expression to a specified text.

Input

Configure

  • Regex Engine:

    Specifies the regex engine that is to be used. The validity of the regex syntax depends on the selected engine. The available engines are :-

    • PCRE - It's a set of functions that implement regular expression pattern matching using the same syntax and semantics as Perl 5.

    • .NET(default) - Most commonly used regex flavor which is based on the Microsoft .NET framework.

Output

  • Regular Expression: String Argument Stores the substring captured from the input string based on the given regular expression.

Last updated