Get a List of Substrings by Regular Expression#

Get a list of substrings from text using regular expression search.

Text[Text] Input string.
Pattern[Text] Regular expression by which the string will be split.
ParametersParameters for performing the search.
TimeoutThe maximum time to wait for the operation to complete in seconds. If the "Pattern" is incorrectly formed, it will exit with an error after the specified time.
Result[List] List of strings after splitting.
Groups[List] List of groups that match the regular expression.
Group List[List] List of dictionaries of groups, where the key of the dictionary is the name of the group in the regular expression.
Error Handling Level

Select the error handling level. Possible values:

  • "Default" - default;
  • "Ignore" - errors are ignored;
  • "Handle" - errors are handled.

If "Default" is selected, the value from the "Start" block of this diagram will be used.

Message Level

Select the message level that blocks will output during operation. Possible values:

  • "Default" - default;
  • "Release" - output is disabled;
  • "Debug" - main information output;
  • "Detailed" - detailed information output.

If "Default" is selected, the value from the "Start" block of this diagram will be used.

Error Text[Text] Returns detailed information about the error in case of incorrect execution of the block.