Parses strings using a regular expression and transforms it into substrings based on regex groups.A few examples:
.*(\d+)x(\d+)x(\d+).*
(\w+) (\w+)
\#?(\p{XDigit}{2})(\p{XDigit}{2})(\p{XDigit}{2})
The expression-and-value matching mode employed
Choice: Find first match Find all matches Match the complete value RequiredA regular expression containing group tokens, marked by parantheses.
Example: ([a-z]+)_(\d*)
Pattern Required