Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Description

This handler returns the results of a regular expression as a string.

...

Class

Code Block
com.dooris.bpm.actionhandler.ReturnRegexHandler

Parameter

Parameter name

Default value

Description

Valid examples

regex

Here the regular expressions to be used are stored.

The following Regex example can be used to extract a valid e-mail from an arbitrary text.

Info

^[A-Z0-9._%+-]+@[A-Z0-9.-]+\.[A-Z]{2,}$.

^[A-Z0-9._%+-]+@[A-Z0-9.-]+\.[A-Z]{2,}$.

content

The tested string, present as either a variable ${Prozessvariable} or a string directly.

${emailListe}

writeNameInVariable

The process variable into which the results are written.

ersteEmail

matchAll

true

Boolean(true/false). If it is set to “true”, all results are written to the process variable.

If it is set to “false”, only the first result will be stored.

false

...