Skip to main content

ExtractionPattern

A regex pattern for extracting metadata from external application output.

Notes

Defines a regular expression pattern used to extract metadata from external application output. Supports an optional replacement to transform matched values before storing them.

Usage

match: string
replace: string

Properties

PropertyTypeRequiredDefault
matchstringNo-
replacestringNo-

Property Details

match

A regular expression used to match content in the document. When a capture group is present, only the captured portion is used as the extracted value.

replace

An optional replacement expression applied to matched content to construct the final extracted value. Supports back-references to capture groups (e.g., $1).