Apply Regex
Applies Regular expression.
Last updated
Applies Regular expression.
Last updated
This activity applies a regular expression to a specified text.
Text: String Argument
Input the text.
Regular Expression: String Argument
Input the regular expression to be applied to the specified text.
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.
Regular Expression: String Argument
Stores the substring captured from the input string based on the given regular expression.