2023:Pattern Match (Value Extractor): Difference between revisions

From Grooper Wiki
No edit summary
No edit summary
Line 16: Line 16:


For more information on regex, click the following link: <!--insert link here-->
For more information on regex, click the following link: <!--insert link here-->
== How To ==


== See Also: ==
== See Also: ==
* [[Value Reader]]
* [[Value Reader]]

Revision as of 14:18, 13 January 2023

WIP

This article is a work-in-progress or created as a placeholder for testing purposes. This article is subject to change and/or expansion. It may be incomplete, inaccurate, or stop abruptly.

This tag will be removed upon draft completion.

Pattern Match is an Extractor Type found in Grooper. This extractor primarily uses regular expression (regex) for general data extraction.

About

Pattern Match is one of the most commonly used extractors for general data. As per its name, it extracts data from a document matching a regex pattern entered into the Value Pattern.

This extractor is useful when you want to extract text data matching a particular pattern across a document, such as dates or social security numbers. For example, the format MM/DD/YYYY can be matched with the regex pattern: \d{2}/\d{2}/\d{4}.

For more information on regex, click the following link:

How To

See Also: